@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
15 lines (14 loc) • 335 B
TypeScript
export declare class UpdateCompanyProfileDto {
companyName?: string;
webSite?: string;
countryId: number;
stateId: number;
cityId: number;
companyAddress: string;
addressLine: string;
postalCode: string;
mobileCode: string;
phoneNumber?: string;
email?: string;
aboutCompany?: string;
}