namespace ProtonVPN.OperatingSystems.WebAuthn.Enums;
///
/// The operation to perform on the large blob.
///
public enum CredentialLargeBlobOperation : uint
{
///
/// Corresponds to WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE.
///
None = PInvoke.WEBAUTHN_CRED_LARGE_BLOB_OPERATION_NONE,
///
/// Corresponds to WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET.
///
Get = PInvoke.WEBAUTHN_CRED_LARGE_BLOB_OPERATION_GET,
///
/// Corresponds to WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET.
///
Set = PInvoke.WEBAUTHN_CRED_LARGE_BLOB_OPERATION_SET,
///
/// Corresponds to WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE.
///
Delete = PInvoke.WEBAUTHN_CRED_LARGE_BLOB_OPERATION_DELETE
}