import { PermissionResponse } from '../../permission/interfaces/permission.response'; import { AuthenticationProfileResponse } from './authentication-profile.response'; export interface AuthenticationUserResponse { id: number; email: string; status: number; permissions: { data: PermissionResponse[]; }; profile: { data: AuthenticationProfileResponse; }; }