23 lines
487 B
C#
23 lines
487 B
C#
using OrpaonEMS.Core.ChannelModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OrpaonEMS.App.Models
|
|
{
|
|
public class AlarmChannelData
|
|
{
|
|
/// <summary>
|
|
/// 消息触发的时间
|
|
/// </summary>
|
|
public DateTime MsgTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 报警数据
|
|
/// </summary>
|
|
public AlarmChannel alarmChannel { get; set; }
|
|
}
|
|
}
|