From 2c459dc4743361a3addb26c2e4d314566afba94f Mon Sep 17 00:00:00 2001
From: Oleksii Holub <1935960+Tyrrrz@users.noreply.github.com>
Date: Fri, 30 Aug 2024 23:17:28 +0300
Subject: [PATCH] Add `Credential.AuthenticatorDisplayName`
---
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,