16 lines
376 B
C#
16 lines
376 B
C#
namespace XP.Hardware.RaySource.Comet.Messages.Commands
|
||
{
|
||
/// <summary>
|
||
/// 设置电流命令
|
||
/// </summary>
|
||
public class SetCurrentCommand : RaySourceCommand
|
||
{
|
||
public override string CommandType => "SetCurrent";
|
||
|
||
/// <summary>
|
||
/// 目标电流值(μA)
|
||
/// </summary>
|
||
public float Current { get; set; }
|
||
}
|
||
}
|