using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Mogafa.App.LogEvents { public class AbGroupEvent:AbGroup { public AbGroupEvent() { EventNames = new List(); } /// /// 需要区分AB group的事件名称列表 /// [JsonProperty("eventNames")] public List EventNames { get; set; } } }