Winify – Diff between revs 55 and 59

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 55 Rev 59
Line 11... Line 11...
11 private bool _launchOnBoot; 11 private bool _launchOnBoot;
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;
Line 16... Line 17...
16   17  
17 public bool LaunchOnBoot 18 public bool LaunchOnBoot
18 { 19 {
19 get => _launchOnBoot; 20 get => _launchOnBoot;
Line 56... Line 57...
56 _infiniteToastDuration = value; 57 _infiniteToastDuration = value;
57 OnPropertyChanged(); 58 OnPropertyChanged();
58 } 59 }
59 } 60 }
Line -... Line 61...
-   61  
-   62 public int RetrievePastNotificationHours
-   63 {
-   64 get => _retrievePastNotificationHours;
-   65 set
-   66 {
-   67 if (value == _retrievePastNotificationHours) return;
-   68 _retrievePastNotificationHours = value;
-   69 OnPropertyChanged();
-   70 }
-   71 }
60   72  
61 public Proxy Proxy 73 public Proxy Proxy
62 { 74 {
63 get => _proxy; 75 get => _proxy;
64 set 76 set