btcpayserver/BTCPayServer/U2F/Models/U2FAuthenticationViewModel.cs
2019-10-31 14:11:33 +09:00

10 lines
207 B
C#

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