region.go 187 B

123456789
  1. package model
  2. // Region .
  3. type Region struct {
  4. PageID int `json:"id"`
  5. Title string `json:"name"`
  6. IndexTid int `json:"index_tid"`
  7. IndexType int `json:"index_type"`
  8. }