您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }