Files
XplorePlane/XP.Hardware.RaySource.Comet.Messages/Commands/SetPowerModeCommand.cs
T

16 lines
403 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace XP.Hardware.RaySource.Comet.Messages.Commands
{
/// <summary>
/// 设置功率模式命令
/// </summary>
public class SetPowerModeCommand : RaySourceCommand
{
public override string CommandType => "SetPowerMode";
/// <summary>
/// 功率模式值:1=Micro Focus2=High Power
/// </summary>
public int Mode { get; set; }
}
}