2019-05-07 09:12:51 +08:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
|
|
|
// Copyright 2018 Jonas Franz. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-05-07 09:12:51 +08:00
|
|
|
|
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"`
|
2023-02-18 20:17:39 +01:00
|
|
|
Exclusive bool `json:"exclusive"`
|
2019-05-07 09:12:51 +08:00
|
|
|
}
|