focus/backend/types/cards.go

9 lines
161 B
Go
Raw Normal View History

2023-12-27 22:23:10 +01:00
package types
type Card struct {
ID int `json:"id"`
ListID int `json:"list_id"`
Title string `json:"title"`
Content string `json:"content"`
}