btcpayserver/BTCPayServer/U2F/Models/U2FAuthenticationViewModel.cs

11 lines
257 B
C#

using System.Collections.Generic;
using BTCPayServer.Data;
namespace BTCPayServer.U2F.Models
{
public class U2FAuthenticationViewModel
{
public string StatusMessage { get; set; }
public List<U2FDevice> Devices { get; set; }
}
}