barker/bookie/src/app/core/user-group.ts

13 lines
246 B
TypeScript

export class UserGroup {
id: string | undefined;
name: string;
enabled: boolean;
public constructor(init?: Partial<UserGroup>) {
this.id = undefined;
this.name = '';
this.enabled = false;
Object.assign(this, init);
}
}