@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
21 lines (20 loc) • 502 B
TypeScript
export declare class UpdateClientDto {
firstName: string;
lastName: string;
email: string;
mobileCode?: string;
phoneNumber?: string;
password?: string;
companyName: string;
foundUsOn: string;
foundUsOnDetail?: string;
about?: string;
webSite?: string;
companyAddress?: string;
addressLine?: string;
postalCode?: string;
countryId: number | null;
stateId: number | null;
cityId: number | null;
markupPercentage?: number | null;
}