libs.nfc/NFC/APDUCommand.cs

23 lines
431 B
C#
Raw Normal View History

2021-03-30 22:51:02 +02:00
using System;
namespace NFC
{
public class APDUCommand
{
2021-03-30 23:27:12 +02:00
public APDUCommand(IsoCase isoCase)
2021-03-30 22:51:02 +02:00
{
2021-03-30 23:27:12 +02:00
Case = isoCase;
2021-03-30 22:51:02 +02:00
}
2021-03-30 23:27:12 +02:00
public IsoCase Case { get; set; }
public byte CLA { get; set; }
public byte INS { get; set; }
public byte[] Data { get; set; }
2021-03-30 22:51:02 +02:00
2021-03-30 23:27:12 +02:00
public byte[] ToArray()
2021-03-30 22:51:02 +02:00
{
throw new NotImplementedException();
}
}
}