mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 13:05:08 +00:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
|
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 = [];
|
||
|
}
|
||
|
}
|