pelican/internal/board/card.go

11 lines
152 B
Go
Raw Permalink Normal View History

2023-05-06 12:49:40 +01:00
package board
// Card represents a card on a Kanban board.
type Card struct {
Identity
Title string
Description string
Created string
2023-05-06 12:49:40 +01:00
}