File: Passkeys\PublicKeyCredentialId.cs
Web Access
Project: src\aspnetcore\src\Identity\Core\src\Microsoft.AspNetCore.Identity.csproj (Microsoft.AspNetCore.Identity)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace Microsoft.AspNetCore.Identity;
 
/// <summary>
/// Represents the credential ID from a public key credential.
/// </summary>
internal sealed class PublicKeyCredentialId
{
    /// <summary>
    /// Gets the credential ID.
    /// </summary>
    public required BufferSource Id { get; init; }
}