using Nop.Web.Framework.Models; namespace Nop.Web.Areas.Admin.Models.Customers; /// /// Represents a customer back in stock subscriptions search model /// public partial record CustomerBackInStockSubscriptionSearchModel : BaseSearchModel { #region Properties public int CustomerId { get; set; } #endregion }