namespace Oqtane.Models
{
///
/// Passkey properties
///
public class UserPasskey
{
///
/// the credential ID for this passkey
///
public byte[] CredentialId { get; set; }
///
/// The friendly name of the passkey
///
public string Name { get; set; }
///
/// The User which this passkey belongs to
///
public int UserId { get; set; }
///
/// A serialized JSON object from the navigator.credentials.create() JavaScript API - only populated during Add
///
public string CredentialJson { get; set; }
}
}