summaryrefslogtreecommitdiffstats
path: root/modules/migration/label.go
blob: 4927be3c0bd1188ea795b54d39e6d3025b96a146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2019 The Gitea Authors. All rights reserved.
// Copyright 2018 Jonas Franz. All rights reserved.
// SPDX-License-Identifier: MIT

package migration

// Label defines a standard label information
type Label struct {
	Name        string `json:"name"`
	Color       string `json:"color"`
	Description string `json:"description"`
	Exclusive   bool   `json:"exclusive"`
}