mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-30 06:08:48 +01:00
9 lines
171 B
TypeScript
9 lines
171 B
TypeScript
|
|
export interface UserResponse {
|
||
|
|
username: string,
|
||
|
|
value: UserRole[],
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface UserRole {
|
||
|
|
resourcealias: string,
|
||
|
|
relationshiptypealias: string,
|
||
|
|
}
|