mirror of
https://github.com/supanadit/geo-smart-system.git
synced 2024-11-10 10:02:21 +00:00
9 lines
144 B
Go
9 lines
144 B
Go
|
package model
|
||
|
|
||
|
type Location struct {
|
||
|
Id string `json:"id"`
|
||
|
Type string `json:"type"`
|
||
|
Lat string `json:"lat"`
|
||
|
Lng string `json:"lng"`
|
||
|
}
|