From 0363bc3f7d4386be67f1b166d590bad78f52c2df Mon Sep 17 00:00:00 2001 From: Oleksii Holub <1935960+Tyrrrz@users.noreply.github.com> Date: Mon, 2 Sep 2024 14:56:43 +0300 Subject: [PATCH] PAS-536 | Add `Credential.AuthenticatorDisplayName` (#152) --- src/Passwordless/Models/Credential.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Passwordless/Models/Credential.cs b/src/Passwordless/Models/Credential.cs index 9cded94..66b7e67 100644 --- a/src/Passwordless/Models/Credential.cs +++ b/src/Passwordless/Models/Credential.cs @@ -20,6 +20,7 @@ namespace Passwordless; /// Optional country credential was created in. /// Device the credential was created on. /// Friendly name for credential. +/// Human-palatable description of the credential's managing authenticator. /// Identifier for the user. /// Whether the credential is synced (or backed up or not). /// Whether the credential is eligible for backup or syncing. @@ -38,6 +39,7 @@ public record Credential( string Country, string Device, string Nickname, + string? AuthenticatorDisplayName, string UserId, bool? BackupState = null, bool? IsBackupEligible = null,