mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
12 lines
314 B
C#
12 lines
314 B
C#
namespace BTCPayServer.U2F.Models
|
|
{
|
|
public class AddU2FDeviceViewModel
|
|
{
|
|
public string AppId { get; set; }
|
|
public string Challenge { get; set; }
|
|
public string Version { get; set; }
|
|
public string DeviceResponse { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
}
|
|
}
|