mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +01:00
15 lines
316 B
C#
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; }
|
|
}
|
|
}
|