2015-04-15 18:32:56 +00:00
|
|
|
|
///
|
|
|
|
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
|
|
|
|
///
|
|
|
|
|
|
using System;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.Cameras.IdcCamera.Command
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Connect : IWorkerCmd
|
|
|
|
|
|
{
|
|
|
|
|
|
public string CmdName { get { return "Connect"; } }
|
|
|
|
|
|
public int TimeoutMs;
|
|
|
|
|
|
|
|
|
|
|
|
public Connect(int timeoutMs)
|
|
|
|
|
|
{
|
|
|
|
|
|
this.TimeoutMs = timeoutMs;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|