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