Winify – Diff between revs 6 and 7

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 6 Rev 7
Line 1... Line -...
1 using System.Collections.Generic; -  
2 using System.ComponentModel; 1 using System.ComponentModel;
3 using System.Runtime.CompilerServices; 2 using System.Runtime.CompilerServices;
4 using System.Xml.Serialization; 3 using System.Xml.Serialization;
5 using Servers.Annotations; 4 using Servers.Annotations;
Line 6... Line 5...
6   5  
Line 10... Line 9...
10 public class Servers : INotifyPropertyChanged 9 public class Servers : INotifyPropertyChanged
11 { 10 {
12 #region Public Enums, Properties and Fields 11 #region Public Enums, Properties and Fields
Line 13... Line 12...
13   12  
14 [XmlElement(ElementName = "Server")] 13 [XmlElement(ElementName = "Server")]
15 public List<Server> Server 14 public BindingListWithCollectionChanged<Server> Server
16 { 15 {
17 get => _server; 16 get => _server;
18 set 17 set
19 { 18 {
Line 29... Line 28...
29   28  
Line 30... Line 29...
30 #endregion 29 #endregion
Line 31... Line 30...
31   30  
Line 32... Line 31...
32 #region Private Delegates, Events, Enums, Properties, Indexers and Fields 31 #region Private Delegates, Events, Enums, Properties, Indexers and Fields
Line 33... Line 32...
33   32