btcpayserver/BTCPayServer/U2F/Models/U2FAuthenticationViewModel.cs
2019-08-30 18:22:13 +09:00

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; }
}
}