keeweb/helper/win32/src/KeeWebHelper/InputCommands/WaitCommand.cs

20 lines
355 B
C#
Raw Normal View History

2016-04-24 14:12:33 +02:00
using System.Threading;
namespace KeeWebHelper.InputCommands
{
class WaitCommand : InputCommandBase
{
public int Interval { get; set; }
public WaitCommand(int interval)
{
Interval = interval;
}
public override void Execute()
{
Thread.Sleep(Interval);
}
}
}