mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-06-08 05:58:29 -05:00
10 lines
187 B
Go
10 lines
187 B
Go
|
|
package model
|
||
|
|
|
||
|
|
// Region .
|
||
|
|
type Region struct {
|
||
|
|
PageID int `json:"id"`
|
||
|
|
Title string `json:"name"`
|
||
|
|
IndexTid int `json:"index_tid"`
|
||
|
|
IndexType int `json:"index_type"`
|
||
|
|
}
|