b31508e4f3
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
8 lines
204 B
Go
8 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"`
|
|
}
|