Winify

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 43  →  ?path2? @ 44
/trunk/Configuration/Configuration.cs
@@ -9,6 +9,7 @@
public class Configuration : INotifyPropertyChanged
{
private bool _launchOnBoot;
private bool _ignoreSelfSignedCertificates;
 
public bool LaunchOnBoot
{
@@ -21,6 +22,17 @@
}
}
 
public bool IgnoreSelfSignedCertificates
{
get => _ignoreSelfSignedCertificates;
set
{
if (value == _ignoreSelfSignedCertificates) return;
_ignoreSelfSignedCertificates = value;
OnPropertyChanged();
}
}
 
public event PropertyChangedEventHandler PropertyChanged;
 
[NotifyPropertyChangedInvocator]