SharpCAT/CATCommand.cs
Erick Kinnee a6984d4893 Added CATCommand.cs model.
Add several BaudRates to Serial.cs.
Changes to Yaesu FT818.cs fori binary operations such as power on and off.
2019-03-06 10:13:23 -06:00

16 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace SharpCAT
{
class CATCommand
{
public string P1 { get; set; }
public string P2 { get; set; }
public string P3 { get; set; }
public string P4 { get; set; }
public string OpCode { get; set; }
}
}