添加项目文件。
This commit is contained in:
37
OrpaonEMS.App/Event/CoolAlarmCellEventHandMsg.cs
Normal file
37
OrpaonEMS.App/Event/CoolAlarmCellEventHandMsg.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
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
|
||||
{
|
||||
/// <summary>
|
||||
/// Alarm状态
|
||||
/// </summary>
|
||||
public bool State { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Category
|
||||
/// </summary>
|
||||
public ushort Category { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// Alarm等级
|
||||
///// </summary>
|
||||
//public int Level { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Alarm内容
|
||||
/// </summary>
|
||||
public string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 报警时间信息
|
||||
/// </summary>
|
||||
public AlarmTimeInfo CurTimeInfo { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user