15 lines
367 B
TypeScript
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;
|
|
}
|
|
}
|