HamBook – Blame information for rev 9

Subversion Repositories:
Rev:
Rev Author Line No. Line
9 office 1 using System;
2 using System.Collections.Generic;
3 using System.IO.Ports;
4 using System.Linq;
5 using System.Text;
6 using System.Threading.Tasks;
7 using RJCP.IO.Ports;
8  
9 namespace HamBook.Radios.Generic.CAT
10 {
11 public abstract class RI : Cat
12 {
13 public RI(SerialPortStream serialPort) : base(serialPort)
14 {
15 }
16  
17 public override string Name => "RI";
18  
19 public override string Definition => "RADIO INFORMATION";
20  
21 public abstract bool Read(RadioInformationType radioInformationType);
22 }
23 }