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