Try your search with a different keyword or use * as a wildcard.
namespace Nop.Plugin.Widgets.FacebookPixel.Domain;
///
/// Represents tracked event details
///
public class TrackedEvent
{
#region Ctor
public TrackedEvent()
{
EventObjects = new List();
}
#endregion
#region Properties
///
/// Gets or sets the event name
///
public string EventName { get; set; }
///
/// Gets or sets the store identifier
///
public int StoreId { get; set; }
///
/// Gets or sets the customer identifier
///
public int CustomerId { get; set; }
///
/// Gets or sets a value indicating whether this event is a custom event
///
public bool IsCustomEvent { get; set; }
///
/// Gets or sets the formatted objects for this event
///
public IList EventObjects { get; set; }
#endregion
}