libs.nfc/NFC/Exceptions/APDUException.cs

10 lines
145 B
C#
Raw Permalink Normal View History

2021-03-30 22:51:02 +02:00
using System;
namespace NFC.Exceptions
{
public class APDUException : Exception
{
public readonly byte ResponseCode;
}
}