Webiant Logo Webiant Logo
  1. No results found.

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

BackInStockSubscribeModel.cs

using Nop.Web.Framework.Models;

namespace Nop.Web.Models.Catalog;

public partial record BackInStockSubscribeModel : BaseNopModel
{
    public int ProductId { get; set; }
    public string ProductName { get; set; }
    public string ProductSeName { get; set; }

    public bool IsCurrentCustomerRegistered { get; set; }
    public bool SubscriptionAllowed { get; set; }
    public bool AlreadySubscribed { get; set; }

    public int MaximumBackInStockSubscriptions { get; set; }
    public int CurrentNumberOfBackInStockSubscriptions { get; set; }
}