using Nop.Web.Framework.Models; namespace Nop.Web.Areas.Admin.Models.Discounts; /// /// Represents a product model to add to the discount /// public partial record AddProductToDiscountModel : BaseNopModel { #region Ctor public AddProductToDiscountModel() { SelectedProductIds = new List(); } #endregion #region Properties public int DiscountId { get; set; } public IList SelectedProductIds { get; set; } #endregion }