photoprism/internal/query/label_result.go
Michael Mayer 8ccaaff4e5 Backend: Update label photo count and refactor entity fixtures
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-10 19:43:49 +02:00

24 lines
434 B
Go

package query
import (
"time"
)
// LabelResult contains found labels
type LabelResult struct {
// Label
ID uint
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt time.Time
LabelUUID string
LabelSlug string
CustomSlug string
LabelName string
LabelPriority int
LabelFavorite bool
LabelDescription string
LabelNotes string
PhotoCount int
}