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
{
///
/// 消息触发的时间
///
public DateTime MsgTime { get; set; }
///
/// 报警数据
///
public AlarmChannel alarmChannel { get; set; }
}
}