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

16 lines
279 B
TypeScript
Raw Normal View History

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