2019-05-07 09:12:51 +08:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
2021-11-16 23:25:33 +08:00
|
|
|
package migration
|
2019-05-07 09:12:51 +08:00
|
|
|
|
2021-07-08 07:38:13 -04:00
|
|
|
// Label defines a standard label information
|
2019-05-07 09:12:51 +08:00
|
|
|
type Label struct {
|
2022-01-26 09:45:51 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
|
Color string `json:"color"`
|
|
|
|
|
Description string `json:"description"`
|
2019-05-07 09:12:51 +08:00
|
|
|
}
|