WingMan

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 9  →  ?path2? @ 10
/trunk/WingMan/MouseKey/KeyBindingExecutingEventArgs.cs
@@ -0,0 +1,16 @@
using System;
 
namespace WingMan.MouseKey
{
public class KeyBindingExecutingEventArgs : EventArgs
{
public KeyBindingExecutingEventArgs(string nick, string name)
{
Nick = nick;
Name = name;
}
 
public string Nick { get; set; }
public string Name { get; set; }
}
}