HamBook – Diff between revs 12 and 21

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 12 Rev 21
Line 10... Line 10...
10   10  
11 namespace Configuration 11 namespace Configuration
12 { 12 {
13 public class Band : INotifyPropertyChanged 13 public class Band : INotifyPropertyChanged
14 { 14 {
15 private int _min = 0; 15 private decimal _min = 0;
16 private int _max = 0; 16 private decimal _max = 0;
Line 17... Line 17...
17 private int _meters = 0; 17 private int _meters = 0;
18   18  
19 public int Meters 19 public int Meters
Line 29... Line 29...
29 _meters = value; 29 _meters = value;
30 OnPropertyChanged(); 30 OnPropertyChanged();
31 } 31 }
32 } 32 }
Line 33... Line 33...
33   33  
34 public int Min 34 public decimal Min
35 { 35 {
36 get => _min; 36 get => _min;
37 set 37 set
38 { 38 {
Line 44... Line 44...
44 _min = value; 44 _min = value;
45 OnPropertyChanged(); 45 OnPropertyChanged();
46 } 46 }
47 } 47 }
Line 48... Line 48...
48   48  
49 public int Max 49 public decimal Max
50 { 50 {
51 get => _max; 51 get => _max;
52 set 52 set
53 { 53 {