WingMan – Blame information for rev 32

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  
14 office 4 namespace WingMan.Bindings
4 office 5 {
10 office 6 public class LocalKeyBindings
4 office 7 {
10 office 8 [XmlIgnore] public static readonly XmlSerializer XmlSerializer = new XmlSerializer(typeof(LocalKeyBindings));
9 office 9  
10 office 10 public LocalKeyBindings()
5 office 11 {
7 office 12 }
5 office 13  
10 office 14 public LocalKeyBindings(List<KeyBinding> bindings) : this()
5 office 15 {
16 Bindings = bindings;
17 }
18  
10 office 19 public List<KeyBinding> Bindings { get; set; }
4 office 20 }
32 office 21 }