16 lines
258 B
C#
16 lines
258 B
C#
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|