WingMan – Diff between revs 7 and 10

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 7 Rev 10
Line 1... Line 1...
1 using System.Collections.Generic; 1 using System.Collections.Generic;
2 using System.Xml.Serialization; 2 using System.Xml.Serialization;
Line 3... Line 3...
3   3  
4 namespace WingMan.MouseKey 4 namespace WingMan.MouseKey
5 { 5 {
6 public class MouseKeyBindingExchange 6 public class KeyBindingExchange
7 { 7 {
8 [XmlIgnore] public static readonly XmlSerializer XmlSerializer = 8 [XmlIgnore] public static readonly XmlSerializer XmlSerializer =
Line 9... Line 9...
9 new XmlSerializer(typeof(MouseKeyBindingExchange)); 9 new XmlSerializer(typeof(KeyBindingExchange));
10   10  
11 public MouseKeyBindingExchange() 11 public KeyBindingExchange()
Line 12... Line 12...
12 { 12 {
13 } 13 }
14   14  
15 public MouseKeyBindingExchange(string nick, List<MouseKeyBinding> mouseKeyBindings) 15 public KeyBindingExchange(string nick, List<KeyBinding> keyBindings)
16 { 16 {
Line 17... Line 17...
17 Nick = nick; 17 Nick = nick;
Line 18... Line 18...
18 MouseKeyBindings = mouseKeyBindings; 18 KeyBindings = keyBindings;
19 } 19 }
20   20