WingMan – Blame information for rev 9

Subversion Repositories:
Rev:
Rev Author Line No. Line
9 office 1 using System.Collections.Generic;
2  
3 namespace WingMan.MouseKey
4 {
5 public class RemoteMouseKeyBinding
6 {
7 public RemoteMouseKeyBinding()
8 {
9 }
10  
11 public RemoteMouseKeyBinding(string nick, string name, List<string> mouseKeyCombo)
12 {
13 Nick = nick;
14 Name = name;
15 Keys = mouseKeyCombo;
16 }
17  
18 public string Nick { get; set; }
19  
20 public string Name { get; set; }
21  
22 public List<string> Keys { get; set; }
23 }
24 }