libs.nfc/NFC/APDUResponse.cs
2021-03-30 23:27:12 +02:00

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; }
}
}