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