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