using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Application { public class DeviceWarningOutput { /// /// 报警开始时间 /// public DateTime? WarningTime { get; set; } /// /// 报警设备名称 /// public string DeviceName { get; set; } /// /// 报警名称 /// public string WarningContent { get; set; } } }