This commit is contained in:
Amritanshu
2019-06-20 00:17:44 +05:30
parent 2b2624c9c2
commit 93743bdc8e
27 changed files with 171 additions and 133 deletions

View File

@ -0,0 +1,19 @@
export class User {
id: string;
name: string;
password: string;
lockedOut: boolean;
roles: UserRole[];
perms: string[];
isAuthenticated: boolean;
public constructor(init?: Partial<User>) {
Object.assign(this, init);
}
}
export class UserRole {
id: string;
name: string;
enabled: boolean;
}