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

14 lines
183 B
C#
Raw Normal View History

2016-04-24 14:12:33 +02:00
using System;
namespace KeeWebHelper.InputCommands
{
[Flags]
enum ModifierKeys : byte
{
None = 0,
Ctrl = 1,
Alt = 2,
Shift = 4
}
}