Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ProductToWishlistModel.cs

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();
    }
}