Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 6  →  ?path2? @ 7
/trunk/Servers/Servers.cs
@@ -1,5 +1,4 @@
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Xml.Serialization;
using Servers.Annotations;
@@ -12,7 +11,7 @@
#region Public Enums, Properties and Fields
 
[XmlElement(ElementName = "Server")]
public List<Server> Server
public BindingListWithCollectionChanged<Server> Server
{
get => _server;
set
@@ -31,7 +30,7 @@
 
#region Private Delegates, Events, Enums, Properties, Indexers and Fields
 
private List<Server> _server = new List<Server>();
private BindingListWithCollectionChanged<Server> _server = new BindingListWithCollectionChanged<Server>();
 
#endregion