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"`
|
|
}
|