using System; namespace TBF.BenchControl.Cameras.IdcCamera.Command { public class SetBrightness : IWorkerCmd { public string CmdName { get { return "SetBrightness"; } } public float Brightness; /// 0.0f .. 1.0f public SetBrightness(float brightness) { this.Brightness = brightness; } } }