| 1 2 3 4 5 6 7 8 9 10 11 | 1x 4x 4x 1x | import { KanbanCard } from './kanban-card'
export class KanbanList {
name: string;
cards: KanbanCard[];
constructor(initialValue) {
this.name = initialValue.name;
this.cards = initialValue.cards;
}
} |