16 lines
393 B
TypeScript
16 lines
393 B
TypeScript
import type Contact from "./Contact";
|
|
import type Office from "./Office";
|
|
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 | null;
|
|
contacts?: Contact.IContact;
|
|
}
|
|
}
|
|
export default Address;
|