WingMan – Blame information for rev 20
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
5 | office | 1 | using System; |
2 | |||
14 | office | 3 | namespace WingMan.Bindings |
5 | office | 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 | } |