geo-smart-system/model/location.go
2019-10-31 20:29:44 +07:00

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"`
}