25 lines
560 B
C#
25 lines
560 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.Cameras.IdcCamera.Command
|
|
{
|
|
class Save : IWorkerCmd
|
|
{
|
|
public string CmdName { get { return "Save"; } }
|
|
public string VariableName;
|
|
public string FileName;
|
|
public FileFormat Format;
|
|
public bool WaitCompleted;
|
|
|
|
public Save(string variableName, string fileName, FileFormat format, bool waitCompleted)
|
|
{
|
|
this.VariableName = variableName;
|
|
this.FileName = fileName;
|
|
this.Format = format;
|
|
this.WaitCompleted = waitCompleted;
|
|
}
|
|
}
|
|
}
|