export * from "../Customer/Address"; import AddressCustomer from "../Customer/Address"; import Contact from "./Contact"; import Office from "./Office"; export default class Address extends AddressCustomer { address: string; city: string; zip_code: number; office?: Office | null; contact?: Contact | null; }