geo-smart-system/model/Location.go

9 lines
144 B
Go
Raw Normal View History

2019-10-20 03:34:17 +00:00
package model
type Location struct {
Id string `json:"id"`
Type string `json:"type"`
Lat string `json:"lat"`
Lng string `json:"lng"`
}