mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-03-14 05:46:26 -05:00
10 lines
194 B
Go
10 lines
194 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// Location .
|
||
|
|
type Location struct {
|
||
|
|
ID int32 `json:"id"`
|
||
|
|
PID int32 `json:"pid"`
|
||
|
|
Name string `json:"name"`
|
||
|
|
Child []*Location `json:"child,omitempty"`
|
||
|
|
}
|