export interface PostCodeModel { title: string; id: number; } export interface AddressModel { addressLine1: string; addressLine2: string; addressLine3: string; town: string; postcode: string; country: string; moreThanThreeYears: boolean; }