photoprism/internal/form/label.go
Michael Mayer 03ec4b586d Initial commit for folders and moments #154 #260 #331
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-05-23 20:58:58 +02:00

9 lines
194 B
Go

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