dc/MQ/body/AlarmListBody.cs

42 lines
940 B
C#
Raw Normal View History

2022-04-01 17:03:54 +08:00
#region << >>
/*----------------------------------------------------------------
* Hupe
* 2021/10/19 16:26:51
* V1.0.0
*
* ----------------------------------------------------------------
*
*
*
* V1.0.1
*----------------------------------------------------------------*/
#endregion << >>
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ARI.EAP.HOST.MQ.body
{
[Serializable]
public class AlarmListBody
{
public List<Alarm> alarmList;
public AlarmListBody()
{
alarmList = new List<Alarm>();
}
}
[Serializable]
public class Alarm
{
public string ALCD;
public string ALID;
public string ALTX;
}
}