WingMan – Blame information for rev 10

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