import { Defaults } from '../defaults'; import { Country } from './country'; export class Address { contact: string | null = Defaults.Null; street: string | null = Defaults.Null; postalCode: string | null = Defaults.Null; place: string | null = Defaults.Null; country: Country = new Country(); }