20 lines
544 B
C#
20 lines
544 B
C#
using DTS.Common.ICommunication;
|
|
|
|
namespace DTS.DASLib.Command.SLICE.DownloadCommands
|
|
{
|
|
public class ResetEventList : EventDataCommands
|
|
{
|
|
protected override Commands Command => Commands.ResetEventList;
|
|
|
|
public ResetEventList(DTS.Common.Interface.DASFactory.ICommunication sock)
|
|
: base(sock)
|
|
{
|
|
}
|
|
|
|
public ResetEventList(DTS.Common.Interface.DASFactory.ICommunication sock, int timeoutMillisec)
|
|
: base(sock, timeoutMillisec)
|
|
{
|
|
}
|
|
}
|
|
}
|