HamBook – Blame information for rev 46

Subversion Repositories:
Rev:
Rev Author Line No. Line
3 office 1 using System;
2 using System.Collections.Generic;
3 using System.Data.SqlTypes;
4 using System.Linq;
5 using System.Text;
6 using System.Threading;
7 using System.Threading.Tasks;
8  
9 namespace HamBook.Radios.Generic
10 {
11 public class Information
12 {
13 public int RadioBank { get; set; }
14  
15 public int Frequency { get; set; }
16  
17 public ClarifierDirection ClarifierDirection { get; set; }
18  
19 public int ClarifierOffset { get; set; }
20  
15 office 21 public bool Clar { get; set; }
3 office 22  
23 public RadioMode RadioMode { get; set; }
24  
25 public RadioStorage Storage { get; set; }
26  
46 office 27 public Ctcss Ctcss { get; set; }
3 office 28  
46 office 29 public Phase Phase { get; set; }
3 office 30 }
31 }