WingMan – Blame information for rev 7

Subversion Repositories:
Rev:
Rev Author Line No. Line
7 office 1 using System.Collections.Generic;
4 office 2  
7 office 3 namespace WingMan.MouseKey
4 office 4 {
5 office 5 public class MouseKeyBindings
4 office 6 {
5 office 7 public MouseKeyBindings()
8 {
7 office 9 }
5 office 10  
11 public MouseKeyBindings(List<MouseKeyBinding> bindings) : this()
12 {
13 Bindings = bindings;
14 }
15  
16 public List<MouseKeyBinding> Bindings { get; set; }
4 office 17 }
18 }