1
Fork 0
photoview/api/graphql/models/media_exif.go

25 lines
414 B
Go

package models
import (
"time"
"gorm.io/gorm"
)
type MediaEXIF struct {
gorm.Model
Camera *string
Maker *string
Lens *string
DateShot *time.Time
Exposure *string
Aperture *float64
Iso *int
FocalLength *float64
Flash *string
Orientation *int
ExposureProgram *int
GPSLatitude *float64
GPSLonitude *float64
}