export interface PermissionNode { name: string; checked: boolean; expanded: boolean; children?: PermissionNode[]; buttons?: PermissionNode[]; accountToAccount?: boolean; glToGl?: boolean; accountToGl?: boolean; glToAccount?: boolean; } export interface LogsManagementResponse { id: number, method: string, remoteIp: string, requestBody: string, requestUri: string, responseCode: number, userId: string, dateTime: string }