summaryrefslogtreecommitdiffstats
path: root/modules/migration/label.go
blob: 38f0eb10dad64e700001efc5e883094bad2385f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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"`
}