btcpayserver/BTCPayServer/Fido2/Models/AddFido2CredentialViewModel.cs

12 lines
245 B
C#
Raw Normal View History

using Fido2NetLib.Objects;
namespace BTCPayServer.Fido2.Models
{
public class AddFido2CredentialViewModel
{
public AuthenticatorAttachment? AuthenticatorAttachment { get; set; }
public string Name { get; set; }
}
}