ledgerone_backend/src/auth/dto/update-profile.dto.ts
2026-02-24 21:45:18 +00:00

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;
};