tbf/TestBenchFramework/BenchControl/Cameras/IdcCamera/Command/Stream.cs

20 lines
458 B
C#
Raw Normal View History

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;
}
}
}