using System; using System.Collections.Generic; using System.Text; namespace NFC { public class APDUCommand { /// /// ISO 7816 - CLA - Class /// public byte Class { get; set; } /// /// ISO 7816 - INS - Instruction /// public byte Instruction { get; set; } /// /// ISO 7816 - P1 - Parameter 1 /// public byte Parameter1 { get; set; } /// /// ISO 7816 - P2 - Parameter 2 /// public byte Parameter2 { get; set; } /// /// ISO 7816 - Lc - Length Command /// public byte LengthCommand { get { throw new NotImplementedException(); } } /// /// ISO 7816 - Data - Data /// public byte[] Data { get; set; } /// /// ISO 7816 - Le - Length expected /// public byte LengthExpected { get { throw new NotImplementedException(); } } public byte[] APDUCommandMessage() { throw new NotImplementedException(); } } }