namespace NFC.Cards.NXP_MIFARE_DESFire.Enums { /// /// codes whether the application master key is changeable /// public enum ChangeMasterKey : byte { /// /// Application master key is not changeable anymore (frozen) /// FROZEN = 0x00, /// /// Application master key is changeable (authentication with the current application master key necessary, default) /// CHANGEABLE = 0x01, } }