14 lines
407 B
TypeScript
14 lines
407 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 | null;
|
|
phone_number?: string | null;
|
|
civility: ECivility | string;
|
|
address?: Address;
|
|
}
|