You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
package region |
|
|
|
// Region struct |
|
type Region struct { |
|
Rid int16 `json:"tid"` |
|
Reid int16 `json:"reid"` |
|
Name string `json:"name"` |
|
Logo string `json:"logo"` |
|
Goto string `json:"goto"` |
|
Param string `json:"param"` |
|
Rank string `json:"-"` |
|
Plat int8 `json:"-"` |
|
Build int `json:"-"` |
|
Condition string `json:"-"` |
|
Area string `json:"-"` |
|
}
|
|
|