Webiant Logo Webiant Logo
  1. No results found.

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

ItemClassificationSearchModel.cs

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

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

/// 
/// Represents a item classification search model
/// 
public record ItemClassificationSearchModel : BaseSearchModel
{
    #region Ctor

    public ItemClassificationSearchModel()
    {
        AvailableCountries = new List();
    }

    #endregion

    #region Properties

    [NopResourceDisplayName("Plugins.Tax.Avalara.ItemClassification.Search.Country")]
    public int SearchCountryId { get; set; }

    public IList AvailableCountries { get; set; }

    #endregion
}