namespace NFC.Mifare_DESFire.Enums { /// /// codes whether application master key authentication is needed for file directory access /// public enum FileDirectoryAccess : byte { /// /// Successful application master key authentication is required for executing the “Get FID List”, “Get File Settings”and “Get Key Settings”commands /// ONLYMASTERKEY = 0x00, /// /// “Get FID List”, “Get File Settings” and “Get Key Settings” commands succeed independentlyof a preceding application master key authentication (default) /// NOKEY = 0x02, } }