export class AuthResponseDto {
  access_token: string;
  user: {
    id: string;
    name: string;
    email: string;
    tenant_id: string;
    tenant_name: string | null;
    role: string | null;
    role_id: string | null;
    permissions: Record<string, string>;
  };
  theme: {
    primary_color: string;
    secondary_color: string;
    logo_url: string | null;
  };
}
