using Newtonsoft.Json; namespace Nop.Plugin.Widgets.GoogleAnalytics.Api.Models; [JsonObject] [Serializable] public class Event { /// /// Required. The name for the event /// [JsonProperty("name")] public string Name { get; set; } /// /// Optional. The parameters for the event /// [JsonProperty("params")] public Parameters Params { get; set; } }