using Nop.Core.Domain.Catalog; using Nop.Core.Domain.Common; using Nop.Core.Domain.Customers; namespace Nop.Services.Tax; /// /// Represents a request to get tax rate /// public partial class TaxRateRequest { /// /// Gets or sets a customer /// public Customer Customer { get; set; } /// /// Gets or sets a product /// public Product Product { get; set; } /// /// Gets or sets an address /// public Address Address { get; set; } /// /// Gets or sets a tax category identifier /// public int TaxCategoryId { get; set; } /// /// Gets or sets a price /// public decimal Price { get; set; } /// /// Gets or sets a current store identifier /// public int CurrentStoreId { get; set; } }