using System;
namespace DSInternals.Common.Data
{
///
/// Custom Key Flags
///
/// https://msdn.microsoft.com/en-us/library/mt220496.aspx
[Flags]
public enum KeyFlags : byte
{
///
/// No flags specified.
///
None = 0,
///
/// Reserved for future use.
///
Attestation = 0x01,
///
/// During creation of this key, the requesting client authenticated using only a single credential.
///
MFANotUsed = 0x02,
}
}