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

10 lines
156 B
C#
Raw Normal View History

2016-04-24 14:12:33 +02:00
namespace KeeWebHelper.InputCommands
{
class NoOpCommand : InputCommandBase
{
public override void Execute()
{
}
}
}