11 lines
267 B
C#
11 lines
267 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
|
{
|
|
/// <summary>
|
|
/// 连接 PVI 变量命令
|
|
/// </summary>
|
|
public class ConnectVariablesCommand : RaySourceCommand
|
|
{
|
|
public override string CommandType => "ConnectVariables";
|
|
}
|
|
}
|