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