26 lines
874 B
C#
26 lines
874 B
C#
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Customers;
|
|
|
|
/// <summary>
|
|
/// Represents a customer back in stock subscription model
|
|
/// </summary>
|
|
public partial record CustomerBackInStockSubscriptionModel : BaseNopEntityModel
|
|
{
|
|
#region Properties
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.BackInStockSubscriptions.Store")]
|
|
public string StoreName { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.BackInStockSubscriptions.Product")]
|
|
public int ProductId { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.BackInStockSubscriptions.Product")]
|
|
public string ProductName { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Customers.Customers.BackInStockSubscriptions.CreatedOn")]
|
|
public DateTime CreatedOn { get; set; }
|
|
|
|
#endregion
|
|
} |