ibms-dome/FrontendWebApi/Models/Alarm.cs

18 lines
435 B
C#
Raw Normal View History

using NPOI.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace FrontendWebApi.Models
{
public class AlarmObixResult
{
public string alarm_timestamp { get; set; }
public string device_number { get; set; }
public List<BuildingAlarmDeviceAmount> buildingAlarmDeviceAmount { get; set; } = new List<BuildingAlarmDeviceAmount>();
}
}