export interface IHousingTenure {
    ownedOutright: number;
    ownedWithMortgage: number;
    sharedOwnership: number;
    rentedFromCouncil: number;
    rentedOtherSocial: number;
    rentedPrivate: number;
    rentedOther: number;
    rentFee: number;
    ownedHousingPercent: number;
    rentedHousingPercent: number;
    socialHousingPercent: number;
    privateLandlordsPercent: number;
}
