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

27 lines
461 B
Go

package models
import (
"time"
)
type MediaEXIF struct {
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
}
func (exif *MediaEXIF) Media() *Media {
panic("not implemented")
}