Files
btcpayserver/BTCPayServer/Fido2/Models/LoginWithFido2ViewModel.cs
2024-12-03 21:13:23 +09:00

15 lines
316 B
C#

using Fido2NetLib;
using Newtonsoft.Json.Linq;
namespace BTCPayServer.Fido2.Models
{
public class LoginWithFido2ViewModel
{
public string UserId { get; set; }
public bool RememberMe { get; set; }
public string Data { get; set; }
public string Response { get; set; }
}
}