Files
YuPu-OrpaonEMS/OrpaonEMS.App/Models/AlarmChannelData.cs
2025-02-28 22:23:13 +08:00

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; }
}
}