You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
382 B
TypeScript
18 lines
382 B
TypeScript
export interface PermissionNode {
|
|
name: string;
|
|
checked: boolean;
|
|
expanded: boolean;
|
|
children?: PermissionNode[];
|
|
buttons?: PermissionNode[];
|
|
}
|
|
|
|
export interface LogsManagementResponse {
|
|
id: number,
|
|
method: string,
|
|
remoteIp: string,
|
|
requestBody: string,
|
|
requestUri: string,
|
|
responseCode: number,
|
|
userId: string,
|
|
dateTime: string
|
|
} |