mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-12 23:01:52 +01:00
14 lines
209 B
C#
14 lines
209 B
C#
using PCSC;
|
|
using PCSC.Iso7816;
|
|
|
|
namespace NFC
|
|
{
|
|
public class APDUCommand : CommandApdu
|
|
{
|
|
public APDUCommand(IsoCase isoCase) : base(isoCase, SCardProtocol.Any)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|