using System; using System.Collections.Generic; using System.Text; namespace FrontendWorkerService.Models { class OntimeAlarmRawData { } public class DeviceInfo { 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; } } /// /// 即時告警前處理資料 /// public class OntimeAlarmRawDataPreprocess { public string DeviceNumber { get; set; } public string Name { get; set; } public string SourceStatus { get; set; } } }