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