WingMan – Blame information for rev 32

Subversion Repositories:
Rev:
Rev Author Line No. Line
10 office 1 using System;
2  
14 office 3 namespace WingMan.Bindings
10 office 4 {
5 public class KeyBindingExecutingEventArgs : EventArgs
6 {
7 public KeyBindingExecutingEventArgs(string nick, string name)
8 {
9 Nick = nick;
10 Name = name;
11 }
12  
13 public string Nick { get; set; }
14 public string Name { get; set; }
15 }
32 office 16 }