19 lines
318 B
C#
19 lines
318 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using System;
|
|
|
|
namespace TBF.BenchControl.Cameras.IdcCamera.Command
|
|
{
|
|
public class Other : IWorkerCmd
|
|
{
|
|
public string CmdName { get { return "Other"; } }
|
|
public string Command;
|
|
|
|
public Other(string command)
|
|
{
|
|
this.Command = command;
|
|
}
|
|
}
|
|
}
|