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.Plugin.Widgets.FacebookPixel.Models;
///
/// Represents a custom event search model
///
public record CustomEventSearchModel : BaseSearchModel
{
#region Ctor
public CustomEventSearchModel()
{
AddCustomEvent = new CustomEventModel();
}
#endregion
#region Properties
public int ConfigurationId { get; set; }
[NopResourceDisplayName("Plugins.Widgets.FacebookPixel.Configuration.CustomEvents.Search.WidgetZone")]
public string WidgetZone { get; set; }
public CustomEventModel AddCustomEvent { get; set; }
#endregion
}