summaryrefslogtreecommitdiff
path: root/internal/models/types.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/types.go')
-rw-r--r--internal/models/types.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/models/types.go b/internal/models/types.go
index d39a1d6..31308fc 100644
--- a/internal/models/types.go
+++ b/internal/models/types.go
@@ -36,11 +36,18 @@ type Meal struct {
RecipeURL string `json:"recipe_url"`
}
+// List represents a Trello list
+type List struct {
+ ID string `json:"id"`
+ Name string `json:"name"`
+}
+
// Board represents a Trello board
type Board struct {
ID string `json:"id"`
Name string `json:"name"`
Cards []Card `json:"cards"`
+ Lists []List `json:"lists"`
}
// Card represents a Trello card