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