You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

label.go 379B

12345678910111213
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // Copyright 2018 Jonas Franz. All rights reserved.
  3. // SPDX-License-Identifier: MIT
  4. package migration
  5. // Label defines a standard label information
  6. type Label struct {
  7. Name string `json:"name"`
  8. Color string `json:"color"`
  9. Description string `json:"description"`
  10. Exclusive bool `json:"exclusive"`
  11. }