2020-01-29 15:28:20 +01:00
|
|
|
package form
|
|
|
|
|
2020-02-02 03:36:00 +01:00
|
|
|
// Label represents a label edit form.
|
2020-01-29 15:28:20 +01:00
|
|
|
type Label struct {
|
2020-04-19 01:13:55 +02:00
|
|
|
LabelName string `json:"LabelName"`
|
|
|
|
Uncertainty int `json:"Uncertainty"`
|
|
|
|
LabelPriority int `json:"LabelPriority"`
|
2020-01-29 15:28:20 +01:00
|
|
|
}
|