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

10 lines
156 B
C#
Executable File

namespace KeeWebHelper.InputCommands
{
class NoOpCommand : InputCommandBase
{
public override void Execute()
{
}
}
}