HamBook – Rev 46
?pathlinks?
using System;
using System.Collections.Generic;
using System.Data.SqlTypes;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace HamBook.Radios.Generic
{
public class Information
{
public int RadioBank { get; set; }
public int Frequency { get; set; }
public ClarifierDirection ClarifierDirection { get; set; }
public int ClarifierOffset { get; set; }
public bool Clar { get; set; }
public RadioMode RadioMode { get; set; }
public RadioStorage Storage { get; set; }
public Ctcss Ctcss { get; set; }
public Phase Phase { get; set; }
}
}