Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
namespace Nop.Web.Areas.Admin.Models.Discounts;
/// 
/// Represents a category model to add to the discount
///  
public partial record AddCategoryToDiscountModel : BaseNopModel
{
    #region Ctor
    public AddCategoryToDiscountModel()
    {
        SelectedCategoryIds = new List();
    }
    #endregion
    #region Properties
    public int DiscountId { get; set; }
    public IList SelectedCategoryIds { get; set; }
    #endregion
}