fuse-angular/src/app/main/content/apps/scrumboard/list.model.ts

16 lines
290 B
TypeScript
Raw Normal View History

2017-08-30 15:46:07 +00:00
import { FuseUtils } from '../../../../core/fuseUtils';
export class List
{
id: string;
name: string;
idCards: string[];
constructor(list)
{
this.id = list.id || FuseUtils.generateGUID();
this.name = list.name || '';
this.idCards = [];
}
}