Webiant Logo Webiant Logo
  1. No results found.

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

TaxExemptionModel.cs

using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;

namespace Nop.Plugin.Tax.Avalara.Models.Customer;

/// 
/// Represents a tax exemption model
/// 
public record TaxExemptionModel : BaseNopModel
{
    #region Ctor

    public TaxExemptionModel()
    {
        Certificates = new List();
        AvailableExposureZones = new List();
    }

    #endregion

    #region Properties

    public string Token { get; set; }

    public string Link { get; set; }

    public int CustomerId { get; set; }

    [NopResourceDisplayName("Plugins.Tax.Avalara.ExemptionCertificates.Add.ExposureZone")]
    public int ExposureZone { get; set; }

    public IList Certificates { get; set; }

    public IList AvailableExposureZones { get; set; }

    #endregion
}