photoprism/internal/maps/places/place.go

11 lines
217 B
Go
Raw Normal View History

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