WingMan – Diff between revs 10 and 14

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 10 Rev 14
Line 1... Line 1...
1 using System.Collections.Generic; 1 using System.Collections.ObjectModel;
2 using System.Xml.Serialization; 2 using System.Xml.Serialization;
Line 3... Line 3...
3   3  
4 namespace WingMan.MouseKey 4 namespace WingMan.Bindings
5 { 5 {
6 public class RemoteKeyBindings 6 public class RemoteKeyBindings
7 { 7 {
8 [XmlIgnore] public static readonly XmlSerializer XmlSerializer = 8 [XmlIgnore] public static readonly XmlSerializer XmlSerializer =
Line 9... Line 9...
9 new XmlSerializer(typeof(RemoteKeyBindings)); 9 new XmlSerializer(typeof(RemoteKeyBindings));
10   10  
11 public RemoteKeyBindings() 11 public RemoteKeyBindings()
Line 12... Line 12...
12 { 12 {
13 } 13 }
14   14  
15 public RemoteKeyBindings(List<RemoteKeyBinding> bindings) 15 public RemoteKeyBindings(ObservableCollection<RemoteKeyBinding> bindings)
Line 16... Line 16...
16 { 16 {
17 Bindings = bindings; 17 Bindings = bindings;
18 } 18 }