photoprism/internal/form/label.go
Michael Mayer b31508e4f3 Refactor & improve editing of photo labels
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-04-19 01:13:55 +02:00

9 lines
204 B
Go

package form
// Label represents a label edit form.
type Label struct {
LabelName string `json:"LabelName"`
Uncertainty int `json:"Uncertainty"`
LabelPriority int `json:"LabelPriority"`
}