19 lines
385 B
C#
19 lines
385 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
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;
|
|
}
|
|
}
|
|
}
|