SharpCAT/CATCommand.cs

16 lines
326 B
C#
Raw Normal View History

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; }
}
}