Files

16 lines
376 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}