mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
5fe3c1c61f
* Remove U2F support and JS * fix final changes * fix more final stuff
11 lines
289 B
C#
11 lines
289 B
C#
using BTCPayServer.Fido2.Models;
|
|
|
|
namespace BTCPayServer.Models.AccountViewModels
|
|
{
|
|
public class SecondaryLoginViewModel
|
|
{
|
|
public LoginWithFido2ViewModel LoginWithFido2ViewModel { get; set; }
|
|
public LoginWith2faViewModel LoginWith2FaViewModel { get; set; }
|
|
}
|
|
}
|