Files
YuPu-OrpaonEMS/OrpaonEMS.Core/EventHandMsg/CoolValue.cs
2025-02-28 22:23:13 +08:00

23 lines
470 B
C#

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
{
/// <summary>
/// 指令
/// </summary>
public CoolState CmdType { get; set; }
/// <summary>
/// 目标温度
/// </summary>
public double TargetTemp { get; set; }
}
}