borepin/NFC/APDUCommand.cs

14 lines
209 B
C#
Raw Normal View History

2020-09-17 16:07:58 +02:00
using PCSC;
using PCSC.Iso7816;
2020-09-15 15:27:01 +02:00
namespace NFC
{
2020-09-17 16:07:58 +02:00
public class APDUCommand : CommandApdu
2020-09-15 15:27:01 +02:00
{
2020-09-17 16:07:58 +02:00
public APDUCommand(IsoCase isoCase) : base(isoCase, SCardProtocol.Any)
2020-09-15 15:27:01 +02:00
{
}
}
}