20 lines
458 B
C#
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;
|
|
}
|
|
}
|
|
}
|