Files
YuPu-OrpaonEMS/OrpaonEMS.Core/EventHandMsg/BmsEventHandMsg.cs
2025-02-28 22:23:13 +08:00

23 lines
466 B
C#

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