mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-07 21:48:31 -05:00
17 lines
221 B
Go
17 lines
221 B
Go
package model
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// LogRes .
|
|
type LogRes struct {
|
|
Code int `json:"code"`
|
|
Data *LogChild `json:"data"`
|
|
}
|
|
|
|
// LogChild .
|
|
type LogChild struct {
|
|
Result []json.RawMessage `json:"result"`
|
|
}
|