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