using GDNXFD.Data; using System; using System.Collections.Generic; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IntelligentControlForsx { public class AlarmGroupModel { public String ThingId { get; set; } public String ThingName { get; set; } public String AlarmText { get; set; } public int MaxRank { get; set; } public int AgCount { get; set; } public DateTime AgTime { get; set; } public IList SnapList { get; set; } } }