WingMan – Blame information for rev 7

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