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; } } }