Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Models.ShoppingCart;
namespace Nop.Web.Models.Catalog;
public partial record ProductToWishlistModel : BaseNopModel
{
public int ProductId { get; set; }
public IList CustomWishlistItems { get; set; }
public ProductToWishlistModel()
{
CustomWishlistItems = new List();
}
}