mirror of
https://gitlab.com/fabinfra/fabaccess/nfc.git
synced 2025-03-12 23:01:45 +01:00
10 lines
207 B
C#
10 lines
207 B
C#
|
namespace NFC
|
|||
|
{
|
|||
|
public class APDUResponse
|
|||
|
{
|
|||
|
public byte SW1 { get; internal set; }
|
|||
|
public byte SW2 { get; internal set; }
|
|||
|
public byte[] Body { get; internal set; }
|
|||
|
}
|
|||
|
}
|