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