Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TaxRateList.cs

using Newtonsoft.Json;

namespace Nop.Plugin.Misc.Zettle.Domain.Api.Product;

/// 
/// Represents tax rates details
/// 
public class TaxRateList : ApiResponse
{
    /// 
    /// Gets or sets a list of all tax rates
    /// 
    [JsonProperty(PropertyName = "taxRates")]
    public List TaxRates { get; set; }
}