2023-07-10 17:47:13 +02:00

14 lines
399 B
TypeScript

export * from "../Customer/Contact";
import ContactCustomer, { ECivility } from "../Customer/Contact";
import Address from "./Address";
export default class Contact extends ContactCustomer {
uid?: string;
first_name: string;
last_name: string;
email: string;
cell_phone_number: string;
phone_number?: string | null;
civility: ECivility | string;
address?: Address;
}