Webiant Logo Webiant Logo
  1. No results found.

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

BackInStockSubscription.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a back in stock subscription
/// 
public partial class BackInStockSubscription : BaseEntity
{
    /// 
    /// Gets or sets the store identifier
    /// 
    public int StoreId { get; set; }

    /// 
    /// Gets or sets the product identifier
    /// 
    public int ProductId { get; set; }

    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }
}