2023-03-23 15:41:07 +01:00

15 lines
367 B
TypeScript

import { Contact } from "./Contact";
import { Office } from "./Office";
export declare namespace Address {
class IAddress {
uuid: string;
address: string;
city: string;
zip_code: number;
created_at: Date | null;
updated_at: Date | null;
office?: Office.IOffice;
contacts?: Contact.IContact;
}
}