Webiant Logo Webiant Logo
  1. No results found.

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

TaxCategoryModel.cs

using Nop.Web.Framework.Mvc.ModelBinding;

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

/// 
/// Represents an extended tax category model
/// 
public record TaxCategoryModel : Nop.Web.Areas.Admin.Models.Tax.TaxCategoryModel
{
    #region Properties

    public string Description { get; set; }

    [NopResourceDisplayName("Plugins.Tax.Avalara.Fields.TaxCodeType")]
    public string TypeId { get; set; }
    public string Type { get; set; }

    #endregion
}