using Nop.Core; namespace Nop.Plugin.Tax.FixedOrByCountryStateZip.Domain; /// /// Represents a tax rate /// public class TaxRate : BaseEntity { /// /// Gets or sets the store identifier /// public int StoreId { get; set; } /// /// Gets or sets the tax category identifier /// public int TaxCategoryId { get; set; } /// /// Gets or sets the country identifier /// public int CountryId { get; set; } /// /// Gets or sets the state/province identifier /// public int StateProvinceId { get; set; } /// /// Gets or sets the zip /// public string Zip { get; set; } /// /// Gets or sets the percentage /// public decimal Percentage { get; set; } }