From a416407fcd9abaf29e6c5479a1b01381b1d1745f Mon Sep 17 00:00:00 2001 From: Oleksii Holub <1935960+Tyrrrz@users.noreply.github.com> Date: Thu, 3 Oct 2024 11:52:06 +0300 Subject: [PATCH] Revert "PAS-536 | Add `Credential.AuthenticatorDisplayName`" (#160) This reverts commit 0363bc3f7d4386be67f1b166d590bad78f52c2df. --- src/Passwordless/Models/Credential.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Passwordless/Models/Credential.cs b/src/Passwordless/Models/Credential.cs index 66b7e67..9cded94 100644 --- a/src/Passwordless/Models/Credential.cs +++ b/src/Passwordless/Models/Credential.cs @@ -20,7 +20,6 @@ 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. @@ -39,7 +38,6 @@ public record Credential( string Country, string Device, string Nickname, - string? AuthenticatorDisplayName, string UserId, bool? BackupState = null, bool? IsBackupEligible = null,