import { IStateTaxRate } from './IStateTaxRate'; export interface ICountryTaxRate{ ShippingProfileId:number; CountryId:number; TaxRate:number; CountryName:string StateTaxRates:IStateTaxRate[]; }