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 }