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;

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