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