mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
14 lines
177 B
Go
14 lines
177 B
Go
package trello
|
|
|
|
type TrelloCard struct {
|
|
ID string
|
|
Name string
|
|
List string
|
|
Description string
|
|
}
|
|
|
|
type TrelloList struct {
|
|
ID string
|
|
Name string
|
|
}
|