libs.nfc/NFC/APDUResponse.cs

10 lines
180 B
C#
Raw Normal View History

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