FruitBank/Plugins/Nop.Plugin.Tax.FixedOrByCou.../Domain/TaxRate.cs

39 lines
890 B
C#

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