code.gitea.io/gitea@v1.19.3/modules/migration/label.go (about)

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