using OrpaonEMS.Core.Model; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Event { public class CoolAlarmCellEventHandMsg:EventArgs { /// /// Alarm状态 /// public bool State { get; set; } /// /// Category /// public ushort Category { get; set; } ///// ///// Alarm等级 ///// //public int Level { get; set; } /// /// Alarm内容 /// public string Content { get; set; } /// /// 报警时间信息 /// public AlarmTimeInfo CurTimeInfo { get; set; } } }