photoprism/internal/models/location.go

23 lines
390 B
Go
Raw Normal View History

2018-09-16 17:09:40 +00:00
package models
import (
"github.com/jinzhu/gorm"
)
type Location struct {
gorm.Model
LocDisplayName string
LocLat float64
LocLong float64
LocCategory string
LocType string
LocName string
LocCity string
LocPostcode string
LocCounty string
LocState string
LocCountry string
LocCountryCode string
LocFavorite bool
2018-09-17 16:40:57 +00:00
}