pelican/kanban.go

15 lines
246 B
Go

package main
// Status represents the status of the Kanban board.
type Status struct {
ID int
Name string
CardIds []int
}
// Card represents a card on a Kanban board.
type Card struct {
ID int
Title string
Content string
}