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

31 lines
523 B
Go
Raw Normal View History

2020-02-24 23:30:08 +01:00
package models
import (
"time"
)
type MediaEXIF struct {
Model
2020-02-24 23:30:08 +01:00
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
GPSLongitude *float64
2020-02-24 23:30:08 +01:00
}
func (MediaEXIF) TableName() string {
return "media_exif"
}
func (exif *MediaEXIF) Media() *Media {
panic("not implemented")
}