16 lines
403 B
C#
16 lines
403 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
||
{
|
||
/// <summary>
|
||
/// 设置功率模式命令
|
||
/// </summary>
|
||
public class SetPowerModeCommand : RaySourceCommand
|
||
{
|
||
public override string CommandType => "SetPowerMode";
|
||
|
||
/// <summary>
|
||
/// 功率模式值:1=Micro Focus,2=High Power
|
||
/// </summary>
|
||
public int Mode { get; set; }
|
||
}
|
||
}
|