using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.Core.EventHandMsg { public class BmsEventHandMsg : EventArgs { /// /// 消息类型 /// Alarm /// public string MsgType { get; set; } /// /// Alarm状态 /// public bool AlarmState { get; set; } } }