change folder structure
This commit is contained in:
parent
a332e4d779
commit
a09c75a998
167 changed files with 262 additions and 246 deletions
14
src/viewmodel/admin/management/user.models.ts
Normal file
14
src/viewmodel/admin/management/user.models.ts
Normal file
|
@ -0,0 +1,14 @@
|
|||
import { PermissionObject } from "../../../type/permissionTypes";
|
||||
import { RoleViewModel } from "./role.models";
|
||||
|
||||
export interface UserViewModel {
|
||||
id: string;
|
||||
username: string;
|
||||
mail: string;
|
||||
firstname: string;
|
||||
lastname: string;
|
||||
isOwner: boolean;
|
||||
permissions: PermissionObject;
|
||||
roles: Array<RoleViewModel>;
|
||||
permissions_total: PermissionObject;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue