using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Sln.Imm.Daemon.Model.dto { public class AlarmStateRecord { public bool Running { get; set; } public bool Alarm { get; set; } public bool Stopped { get; set; } public DateTime LastUpdateTime { get; set; } } }