export interface IAddress {
    readonly name: string;
    readonly line1: string;
    readonly line2: string;
    readonly area1: string;
    readonly area2: string;
    readonly region: string;
    readonly postcode: string;
    readonly countryCode: string;
    readonly phoneNumber: string;
}
