2023-03-23 14:57:34 +01:00

21 lines
587 B
TypeScript

import { Address } from "./Address";
import { Customer } from "./Customer";
import { User } from "./User";
import { ContactNotary } from "../..";
export declare namespace Contact {
class IContact {
uuid: string;
first_name: string;
last_name: string;
email: string;
phone_number: string;
cell_phone_number: string;
civility: ContactNotary.ECivility;
address: Address.IAddress;
created_at: Date | null;
updated_at: Date | null;
users?: User.IUser;
customers?: Customer.ICustomer;
}
}