17 lines
437 B
C#
17 lines
437 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace FrontendWebApi.Models
|
|||
|
{
|
|||
|
public class OntimeAlarmRawData
|
|||
|
{
|
|||
|
public string building_guid { get; set; }
|
|||
|
public string main_system_guid { get; set; }
|
|||
|
public string sub_system_guid { get; set; }
|
|||
|
public string floor_guid { get; set; }
|
|||
|
public string device_number { get; set; }
|
|||
|
}
|
|||
|
}
|