11 lines
268 B
C#
11 lines
268 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 读取系统状态命令
|
|
/// </summary>
|
|
public class ReadSystemStatusCommand : RaySourceCommand
|
|
{
|
|
public override string CommandType => "ReadSystemStatus";
|
|
}
|
|
}
|