Webiant Logo Webiant Logo
  1. No results found.

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

AddProductToDiscountModel.cs

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
}