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 }