tbf/TestBenchFramework/BenchControl/Cameras/IdcCamera/Command/Stream.cs
2014-07-28 09:56:40 +02:00

20 lines
458 B
C#

using System;
namespace TBF.BenchControl.Cameras.IdcCamera.Command
{
public class Stream : IWorkerCmd
{
public string CmdName { get { return "Stream"; } }
public StreamType Type;
public FileFormat Format;
public float Brightness; /// Camera brightness 0.0 .. 1.0
public Stream(StreamType type, FileFormat format, float brightness)
{
this.Type = type;
this.Format = format;
this.Brightness = brightness;
}
}
}