12 lines
227 B
TypeScript
12 lines
227 B
TypeScript
export type UpdateProfileDto = {
|
|
fullName?: string;
|
|
phone?: string;
|
|
companyName?: string;
|
|
addressLine1?: string;
|
|
addressLine2?: string;
|
|
city?: string;
|
|
state?: string;
|
|
postalCode?: string;
|
|
country?: string;
|
|
};
|