HamBook – Rev 1
?pathlinks?
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HamBook.Radios
{
public abstract class Cat : IDisposable
{
public abstract string Name { get; }
public abstract string Definition { get; }
public SerialPort SerialPort { get; set; }
public Cat(SerialPort serialPort)
{
SerialPort = serialPort;
}
public void Dispose()
{
SerialPort.Dispose();
}
}
}