12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
export class Permission {
|
|
id: string | undefined;
|
|
name: string;
|
|
enabled: boolean;
|
|
|
|
public constructor(init?: Partial<Permission>) {
|
|
this.name = '';
|
|
this.enabled = true;
|
|
Object.assign(this, init);
|
|
}
|
|
}
|