Webiant Logo Webiant Logo
  1. No results found.

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

ExemptionCertificateModel.cs

using Nop.Web.Framework.Models;

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

/// 
/// Represents a tax exemption certificate model
/// 
public record ExemptionCertificateModel : BaseNopEntityModel
{
    #region Properties

    public string Status { get; set; }

    public string SignedDate { get; set; }

    public string ExpirationDate { get; set; }

    public string ExposureZone { get; set; }

    #endregion
}