summaryrefslogtreecommitdiffstats
path: root/modules/migrations/base/label.go
blob: 0c86b547f1940f995ef0c4bac7d20f3068389c84 (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.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package base

// Label defines a standard label informations
type Label struct {
	Name        string
	Color       string
	Description string
}