WingMan

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 10  →  ?path2? @ 24
/trunk/WingMan/Bindings/RemoteKeyBindings.cs
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Xml.Serialization;
 
namespace WingMan.MouseKey
namespace WingMan.Bindings
{
public class RemoteKeyBindings
{
@@ -12,11 +12,11 @@
{
}
 
public RemoteKeyBindings(List<RemoteKeyBinding> bindings)
public RemoteKeyBindings(ObservableCollection<RemoteKeyBinding> bindings)
{
Bindings = bindings;
}
 
public List<RemoteKeyBinding> Bindings { get; set; }
public ObservableCollection<RemoteKeyBinding> Bindings { get; set; }
}
}