Webiant Logo Webiant Logo
  1. No results found.

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

TaxTotalResult.cs

namespace Nop.Services.Tax;

/// <summary>
/// Represents a result of tax total calculation
/// </summary>
public partial class TaxTotalResult : BaseNopResult
{
    #region Ctor

    public TaxTotalResult()
    {
        TaxRates = new SortedDictionary<decimal, decimal>();
    }

    #endregion

    #region Properties

    /// <summary>
    /// Gets or sets a tax total
    /// </summary>
    public decimal TaxTotal { get; set; }

    /// <summary>
    /// Gets or sets tax rates
    /// </summary>
    public SortedDictionary<decimal, decimal> TaxRates { get; set; }

    #endregion
}