11 lines
242 B
C#
11 lines
242 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 开启高压命令
|
|
/// </summary>
|
|
public class TurnOnCommand : RaySourceCommand
|
|
{
|
|
public override string CommandType => "TurnOn";
|
|
}
|
|
}
|