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.
15 lines
418 B
15 lines
418 B
package locations
|
|
|
|
type Location struct {
|
|
GID uint64 `json:"gid"`
|
|
ID uint64 `json:"id"`
|
|
GUID uint64 `json:"guid"`
|
|
LocationCode string `json:"locationCode"`
|
|
Name string `json:"name"`
|
|
Flag string `json:"flag"`
|
|
Meta []interface{} `json:"_meta"`
|
|
CKey string `json:"_ckey"`
|
|
}
|
|
|
|
type LocationsList []Location
|