2020-05-08 15:41:01 +02:00
|
|
|
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
|
2020-05-10 19:43:49 +02:00
|
|
|
PhotoCount int
|
2020-05-08 15:41:01 +02:00
|
|
|
}
|