borepin/NFC/NXP MIFARE DESFire/Enums/FileIdentifies.cs

12 lines
269 B
C#
Raw Normal View History

2020-09-26 18:02:44 +02:00
namespace NFC.Mifare_DESFire.Enums
{
/// <summary>
/// Indicates use of 2 byte ISO/IEC 7816-4 File Identifies for files within the Application
/// </summary>
public enum FileIdentifies : byte
{
NOTUSED = 0x00,
USED = 0x20
}
}