WingMan

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