main
 1using System.Windows.Forms;
 2
 3namespace MoMoney.Presentation.Winforms.Keyboard
 4{
 5    static public class ShortcutKeys
 6    {
 7        static public readonly ShortcutKey control = new ShortcutKey(Keys.Control);
 8        static public readonly ShortcutKey alt = new ShortcutKey(Keys.Alt);
 9        static public readonly ShortcutKey none = new ShortcutKey(Keys.None);
10        static public readonly ShortcutKey L = new ShortcutKey(Keys.L);
11        static public readonly ShortcutKey N = new ShortcutKey(Keys.N);
12        static public readonly ShortcutKey O = new ShortcutKey(Keys.O);
13        static public readonly ShortcutKey S = new ShortcutKey(Keys.S);
14        static public readonly ShortcutKey X = new ShortcutKey(Keys.X);
15    }
16}