libs.nfc/NFC/APDUCommand.cs
2021-03-30 22:51:02 +02:00

24 lines
471 B
C#

using System;
namespace NFC
{
public class APDUCommand
{
private IsoCase case4Short;
public APDUCommand(IsoCase case4Short)
{
this.case4Short = case4Short;
}
public int CLA { get; internal set; }
public byte INS { get; internal set; }
public byte[] Data { get; internal set; }
internal byte[] ToArray()
{
throw new NotImplementedException();
}
}
}