mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
15 lines
319 B
Go
15 lines
319 B
Go
// Copyright © 2016 Aaron Longwell
|
|
//
|
|
// Use of this source code is governed by an MIT licese.
|
|
// Details in the LICENSE file.
|
|
|
|
package trello
|
|
|
|
type Label struct {
|
|
ID string `json:"id"`
|
|
IDBoard string `json:"idBoard"`
|
|
Name string `json:"name"`
|
|
Color string `json:"color"`
|
|
Uses int `json:"uses"`
|
|
}
|