using OrpaonEMS.Core.Enums; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OrpaonEMS.Core.EventHandMsg { public class CoolValue : EventArgs { /// /// 指令 /// public CoolState CmdType { get; set; } /// /// 目标温度 /// public double TargetTemp { get; set; } } }