Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Plugin.Tax.Avalara.Models.ItemClassification;
///
/// Represents a product model to add for classification
///
public record AddProductToClassificationModel : BaseNopModel
{
#region Ctor
public AddProductToClassificationModel()
{
SelectedProductIds = new List();
}
#endregion
#region Properties
public IList SelectedProductIds { get; set; }
#endregion
}