23 lines
466 B
C#
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; }
|
|
}
|
|
}
|