6da8bd098a
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
10 lines
217 B
Go
10 lines
217 B
Go
package places
|
|
|
|
// Place
|
|
type Place struct {
|
|
PlaceID string `json:"id"`
|
|
LocLabel string `json:"label"`
|
|
LocCity string `json:"city"`
|
|
LocState string `json:"state"`
|
|
LocCountry string `json:"country"`
|
|
}
|