11 lines
294 B
C#
11 lines
294 B
C#
namespace CdgLib.SubCode
|
|
{
|
|
public class Packet
|
|
{
|
|
public byte[] Command = new byte[1];
|
|
public byte[] Data = new byte[16];
|
|
public byte[] Instruction = new byte[1];
|
|
public byte[] ParityP = new byte[4];
|
|
public byte[] ParityQ = new byte[2];
|
|
}
|
|
} |