mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
15 lines
405 B
C#
15 lines
405 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace BTCPayServer.Services.U2F.Models
|
||
|
{
|
||
|
public class U2FDeviceAuthenticationRequest
|
||
|
{
|
||
|
public string KeyHandle { get; set; }
|
||
|
|
||
|
[Required] public string Challenge { get; set; }
|
||
|
|
||
|
[Required] [StringLength(200)] public string AppId { get; set; }
|
||
|
|
||
|
[Required] [StringLength(50)] public string Version { get; set; }
|
||
|
}
|
||
|
}
|