libs.nfc/NFC/APDUCommand.cs

24 lines
471 B
C#
Raw Normal View History

2021-03-30 22:51:02 +02:00
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();
}
}
}