WingMan – Blame information for rev 9

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