libs.nfc/NFC/APDUResponse.cs

10 lines
207 B
C#
Raw Normal View History

2021-03-30 22:51:02 +02:00
namespace NFC
{
public class APDUResponse
{
public byte SW1 { get; internal set; }
public byte SW2 { get; internal set; }
public byte[] Body { get; internal set; }
}
}