11 lines
244 B
C#
11 lines
244 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 关闭高压命令
|
|
/// </summary>
|
|
public class TurnOffCommand : RaySourceCommand
|
|
{
|
|
public override string CommandType => "TurnOff";
|
|
}
|
|
}
|