Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 74  →  ?path2? @ 75
/trunk/Announcements/Announcement.cs
@@ -79,6 +79,19 @@
}
}
 
[XmlElement(ElementName = "Chime")]
public byte[] Chime
{
get => _chime;
set
{
if (value == _chime) return;
 
_chime = value;
OnPropertyChanged();
}
}
 
#endregion
 
#region Private Delegates, Events, Enums, Properties, Indexers and Fields
@@ -93,6 +106,8 @@
 
private bool _enableChime = true;
 
private byte[] _chime = new byte[] {};
 
#endregion
 
#region Constructors, Destructors and Finalizers