HamBook – Diff between revs 17 and 38
?pathlinks?
Rev 17 | Rev 38 | |||
---|---|---|---|---|
Line 7... | Line 7... | |||
7 | |
7 | |
|
8 | namespace HamBook.Radios.Generic |
8 | namespace HamBook.Radios.Generic |
|
9 | { |
9 | { |
|
10 | public class MemoryChannel : IEquatable<MemoryChannel> |
10 | public class MemoryChannel : IEquatable<MemoryChannel> |
|
11 | { |
11 | { |
|
- | 12 | private string _currentLocation = string.Empty; |
||
- | 13 | private int _frequency = 0; |
||
- | 14 | private ClarifierDirection _clarifierDirection = new ClarifierDirection(); |
||
- | 15 | private int _clarifierOffset = 0; |
||
- | 16 | private bool _clar = false; |
||
- | 17 | private MemoryRadioMode _memoryRadioMode = new MemoryRadioMode(); |
||
- | 18 | private CtcssMode _ctcssMode = new CtcssMode(); |
||
- | 19 | private RadioPhase _phase = new RadioPhase(); |
||
- | 20 | private bool _tag = false; |
||
Line 12... | Line 21... | |||
12 | public string CurrentLocation { get; set; } |
21 | private string _text = string.Empty; |
|
Line 13... | Line 22... | |||
13 | |
22 | |
|
Line 14... | Line 23... | |||
14 | public int Frequency { get; set; } |
23 | public string CurrentLocation { get => _currentLocation; set => _currentLocation = value; } |
|
Line 15... | Line 24... | |||
15 | |
24 | |
|
Line 16... | Line 25... | |||
16 | public ClarifierDirection ClarifierDirection { get; set; } |
25 | public int Frequency { get => _frequency; set => _frequency = value; } |
|
Line 17... | Line 26... | |||
17 | |
26 | |
|
Line 18... | Line 27... | |||
18 | public int ClarifierOffset { get; set; } |
27 | public ClarifierDirection ClarifierDirection { get => _clarifierDirection; set => _clarifierDirection = value; } |
|
Line 19... | Line 28... | |||
19 | |
28 | |
|
Line 20... | Line 29... | |||
20 | public bool Clar { get; set; } |
29 | public int ClarifierOffset { get => _clarifierOffset; set => _clarifierOffset = value; } |
|
Line -... | Line 30... | |||
- | 30 | |
||
- | 31 | public bool Clar { get => _clar; set => _clar = value; } |
||
21 | |
32 | |
|
22 | public MemoryRadioMode MemoryRadioMode { get; set; } |
33 | public MemoryRadioMode MemoryRadioMode { get => _memoryRadioMode; set => _memoryRadioMode = value; } |
|
23 | |
34 | |
|
Line 24... | Line 35... | |||
24 | public CtcssMode CtcssMode { get; set; } |
35 | public CtcssMode CtcssMode { get => _ctcssMode; set => _ctcssMode = value; } |
|
25 | |
36 | |
|
26 | public RadioPhase Phase { get; set; } |
37 | public RadioPhase Phase { get => _phase; set => _phase = value; } |