using Nop.Web.Framework.Models; using Nop.Web.Framework.Mvc.ModelBinding; namespace Nop.Web.Areas.Admin.Models.Customers; /// /// Represents a customer back in stock subscription model /// 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 }