mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
24 lines
434 B
Go
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
|
|
LabelCount int
|
|
LabelFavorite bool
|
|
LabelDescription string
|
|
LabelNotes string
|
|
}
|