SharpCAT/Library/Models/CATCommand.cs

11 lines
273 B
C#
Raw Normal View History

namespace SharpCAT.Models
{
2019-03-08 20:04:43 +01:00
internal 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; }
}
2019-03-08 20:04:43 +01:00
}