mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
23 lines
431 B
C#
23 lines
431 B
C#
using System;
|
|
|
|
namespace NFC
|
|
{
|
|
public class APDUCommand
|
|
{
|
|
public APDUCommand(IsoCase isoCase)
|
|
{
|
|
Case = isoCase;
|
|
}
|
|
|
|
public IsoCase Case { get; set; }
|
|
public byte CLA { get; set; }
|
|
public byte INS { get; set; }
|
|
public byte[] Data { get; set; }
|
|
|
|
public byte[] ToArray()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|