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