16 lines
325 B
C#
16 lines
325 B
C#
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;
|
|
}
|
|
}
|
|
}
|