mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 22:46:49 +01:00
11 lines
266 B
C#
11 lines
266 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Services.U2F.Models
|
|
{
|
|
public class U2FAuthenticationViewModel
|
|
{
|
|
public string StatusMessage { get; set; }
|
|
public List<U2FDevice> Devices { get; set; }
|
|
}
|
|
}
|