2023-07-10 17:47:13 +02:00

12 lines
328 B
TypeScript

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;
}