mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-07 17:51:30 +08:00
9 lines
194 B
Go
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"`
|
|
}
|