mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -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"`
|
|
}
|