11 lines
252 B
C#
11 lines
252 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 读取电流命令
|
|
/// </summary>
|
|
public class ReadCurrentCommand : RaySourceCommand
|
|
{
|
|
public override string CommandType => "ReadCurrent";
|
|
}
|
|
}
|