WingMan – Blame information for rev 10

Subversion Repositories:
Rev:
Rev Author Line No. Line
5 office 1 using System;
2  
3 namespace WingMan.MouseKey
4 {
10 office 5 public class KeyBindingsSynchronizerEventArgs : EventArgs
5 office 6 {
10 office 7 public KeyBindingsSynchronizerEventArgs(KeyBindingExchange keyExchangeBindings)
5 office 8 {
10 office 9 Bindings = keyExchangeBindings;
5 office 10 }
7 office 11  
10 office 12 public KeyBindingExchange Bindings { get; set; }
5 office 13 }
14 }