Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Discounts;
///
/// Represents a category search model to add to the discount
///
public partial record AddCategoryToDiscountSearchModel : BaseSearchModel
{
#region Properties
[NopResourceDisplayName("Admin.Catalog.Categories.List.SearchCategoryName")]
public string SearchCategoryName { get; set; }
#endregion
}