mirror of
https://github.com/richard-loafle/fuse-angular.git
synced 2025-01-11 04:55:07 +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 = [];
|
|
}
|
|
}
|