Winify – Diff between revs 59 and 75

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 59 Rev 75
Line 12... Line 12...
12 private bool _ignoreSelfSignedCertificates; 12 private bool _ignoreSelfSignedCertificates;
13 private Proxy _proxy = new Proxy(); 13 private Proxy _proxy = new Proxy();
14 private int _toastDuration = 5000; 14 private int _toastDuration = 5000;
15 private bool _infiniteToastDuration; 15 private bool _infiniteToastDuration;
16 private int _retrievePastNotificationHours; 16 private int _retrievePastNotificationHours;
-   17 private byte[] _chime;
Line 17... Line 18...
17   18  
18 public bool LaunchOnBoot 19 public bool LaunchOnBoot
19 { 20 {
20 get => _launchOnBoot; 21 get => _launchOnBoot;
Line 79... Line 80...
79 _proxy = value; 80 _proxy = value;
80 OnPropertyChanged(); 81 OnPropertyChanged();
81 } 82 }
82 } 83 }
Line -... Line 84...
-   84  
-   85 public byte[] Chime
-   86 {
-   87 get => _chime;
-   88 set
-   89 {
-   90 if (Equals(value, _proxy)) return;
-   91 _chime = value;
-   92 OnPropertyChanged();
-   93 }
-   94 }
83   95  
84 [UsedImplicitly] 96 [UsedImplicitly]
85 public Configuration() 97 public Configuration()
Line 86... Line 98...
86 { 98 {