using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.App.Models { public class CoolAlarm { /// /// 报警内容 /// public string? Content { get; set; } /// /// 报警时间 /// public DateTime AlarmTime { get; set; } } }