Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Widgets.FacebookPixel.Domain;
///
/// Represents custom event configuration
///
public class CustomEvent
{
#region Ctor
public CustomEvent()
{
WidgetZones = new List();
}
#endregion
#region Properties
///
/// Gets or sets the custom event name
///
public string EventName { get; set; }
///
/// Gets or sets the list of widget zones in which this event is tracked
///
public IList WidgetZones { get; set; }
#endregion
}