Files
btcpayserver/BTCPayServer/Models/AccountViewModels/SecondaryLoginViewModel.cs
nicolas.dorier 51514252b6 Run dotnet format
2020-06-28 17:55:27 +09:00

11 lines
283 B
C#

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