Files
btcpayserver/BTCPayServer/Models/AccountViewModels/SecondaryLoginViewModel.cs
2019-10-02 12:32:41 -05:00

10 lines
282 B
C#

using BTCPayServer.U2F.Models;
namespace BTCPayServer.Models.AccountViewModels
{
public class SecondaryLoginViewModel
{
public LoginWith2faViewModel LoginWith2FaViewModel { get; set; }
public LoginWithU2FViewModel LoginWithU2FViewModel { get; set; }
}
}