Files
cms_thermo_active/Step.Model/RoleModel.cs.d.ts
T
CMS4390\marantalu 7a6e75ffd5 Added Bearer oAuth Authentication:
* Create User with roles
* Login
* Authorization without roles
2017-11-23 16:31:30 +01:00

9 lines
132 B
TypeScript

declare module server {
interface roleModel {
roleId: number;
name: string;
level: number;
users: server.UserModel[];
}
}