WingMan – Diff between revs 10 and 14

Subversion Repositories:
Rev:
Only display areas with differencesRegard whitespace
Rev 10 Rev 14
1 using System; 1 using System;
2   2  
3 namespace WingMan.MouseKey 3 namespace WingMan.Bindings
4 { 4 {
5 public class KeyBindingExecutingEventArgs : EventArgs 5 public class KeyBindingExecutingEventArgs : EventArgs
6 { 6 {
7 public KeyBindingExecutingEventArgs(string nick, string name) 7 public KeyBindingExecutingEventArgs(string nick, string name)
8 { 8 {
9 Nick = nick; 9 Nick = nick;
10 Name = name; 10 Name = name;
11 } 11 }
12   12  
13 public string Nick { get; set; } 13 public string Nick { get; set; }
14 public string Name { get; set; } 14 public string Name { get; set; }
15 } 15 }
16 } 16 }
17   17