mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2025-12-06 03:31:59 +01:00
11 lines
273 B
C#
11 lines
273 B
C#
namespace SharpCAT.Models
|
|
{
|
|
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; }
|
|
}
|
|
} |