WingMan – Diff between revs 10 and 14

Subversion Repositories:
Rev:
Only display areas with differencesIgnore 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 KeyBindingsSynchronizerEventArgs : EventArgs 5 public class KeyBindingsSynchronizerEventArgs : EventArgs
6 { 6 {
7 public KeyBindingsSynchronizerEventArgs(KeyBindingExchange keyExchangeBindings) 7 public KeyBindingsSynchronizerEventArgs(KeyBindingExchange keyExchangeBindings)
8 { 8 {
9 Bindings = keyExchangeBindings; 9 Bindings = keyExchangeBindings;
10 } 10 }
11   11  
12 public KeyBindingExchange Bindings { get; set; } 12 public KeyBindingExchange Bindings { get; set; }
13 } 13 }
14 } 14 }
15   15