All files / src/app/tasks/model kanban-list.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 2/2
100% Lines 4/4
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;
  }
}