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 }