mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 14:51:51 +01:00
24 lines
471 B
C#
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();
|
|
}
|
|
}
|
|
}
|