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