23 lines
470 B
C#
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; }
|
|
}
|
|
}
|