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

14 lines
183 B
C#
Executable File

using System;
namespace KeeWebHelper.InputCommands
{
[Flags]
enum ModifierKeys : byte
{
None = 0,
Ctrl = 1,
Alt = 2,
Shift = 4
}
}