Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Catalog;
///
/// Represents a product model to add to the manufacturer
///
public partial record AddProductToManufacturerModel : BaseNopModel
{
#region Ctor
public AddProductToManufacturerModel()
{
SelectedProductIds = new List();
}
#endregion
#region Properties
public int ManufacturerId { get; set; }
public IList SelectedProductIds { get; set; }
#endregion
}