Files
2026-04-17 14:55:32 -04:00

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)
{
}
}
}