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 manufacturer search model to add to the discount
///
public partial record AddManufacturerToDiscountSearchModel : BaseSearchModel
{
#region Properties
[NopResourceDisplayName("Admin.Catalog.Manufacturers.List.SearchManufacturerName")]
public string SearchManufacturerName { get; set; }
#endregion
}