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 an associated product model to add to the product
///
public partial record AddAssociatedProductModel : BaseNopModel
{
#region Ctor
public AddAssociatedProductModel()
{
SelectedProductIds = new List();
}
#endregion
#region Properties
public int ProductId { get; set; }
public IList SelectedProductIds { get; set; }
#endregion
}