1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-22 07:16:38 +02:00
keeweb/helper/win32/KeeWebHelper/InputCommands/InputCommandBase.cs

8 lines
132 B
C#
Raw Normal View History

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