HamBook – Blame information for rev 39
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
23 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.Linq; |
||
4 | using System.Text; |
||
5 | using System.Threading.Tasks; |
||
6 | |||
7 | namespace HamBook.Radios.Generic |
||
8 | { |
||
39 | office | 9 | public enum TunerState : int |
23 | office | 10 | { |
11 | TUNER_OFF = 0, |
||
39 | office | 12 | TUNER_ON = 1, |
13 | TUNING_START = 2 |
||
23 | office | 14 | } |
15 | } |