11 lines
293 B
C#
11 lines
293 B
C#
namespace CdgLib
|
|
{
|
|
public class SubCodePacket
|
|
{
|
|
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];
|
|
}
|
|
} |