Skip to content

Commit a14a53b

Browse files
Added authenticatorDisplayName to ClientPropertiesOutput (#526)
* Added missing property to CredentialPropertiesOutput * added url to definition --------- Co-authored-by: Anders Åberg <[email protected]>
1 parent 85987ea commit a14a53b

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Src/Fido2.Models/Objects/CredentialPropertiesOutput.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,12 @@ public class CredentialPropertiesOutput
1313
/// </summary>
1414
[JsonPropertyName("rk")]
1515
public bool Rk { get; set; }
16+
17+
18+
/// <summary>
19+
/// This OPTIONAL property is a human-palatable description of the credential’s managing authenticator, chosen by the user.
20+
/// https://w3c.github.io/webauthn/#dom-credentialpropertiesoutput-authenticatordisplayname
21+
/// </summary>
22+
[JsonPropertyName("authenticatorDisplayName")]
23+
public string? AuthenticatorDisplayName { get; set; }
1624
}

0 commit comments

Comments
 (0)