mirror of
https://gitlab.com/fabinfra/fabaccess/borepin.git
synced 2025-03-13 23:31:48 +01:00
12 lines
269 B
C#
12 lines
269 B
C#
|
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
|
|||
|
}
|
|||
|
}
|