Type Alias TenantsByEmailResponseDto

TenantsByEmailResponseDto: {
    hasOwnedTenant: boolean;
    tenants: {
        key: string;
        kind: string;
        logoImageUrl?: string | null;
        name: string;
    }[];
}