mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-09-18 00:43:33 +00:00
16 lines
275 B
TypeScript
16 lines
275 B
TypeScript
import { FuseUtils } from '@fuse/utils';
|
|
|
|
export class List
|
|
{
|
|
id: string;
|
|
name: string;
|
|
idCards: string[];
|
|
|
|
constructor(list)
|
|
{
|
|
this.id = list.id || FuseUtils.generateGUID();
|
|
this.name = list.name || '';
|
|
this.idCards = [];
|
|
}
|
|
}
|