import { Defaults } from "~/defaults"; import { RelationsCustomerCountry } from "./country"; export class RelationsCustomerAddress { contact: string = Defaults.String; street: string = Defaults.String; postalCode: string = Defaults.String; place: string = Defaults.String; country: RelationsCustomerCountry = new RelationsCustomerCountry(); }