mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
12 lines
374 B
C#
12 lines
374 B
C#
using BTCPayServer.Fido2.Models;
|
|
|
|
namespace BTCPayServer.Models.AccountViewModels
|
|
{
|
|
public class SecondaryLoginViewModel
|
|
{
|
|
public LoginWithFido2ViewModel LoginWithFido2ViewModel { get; set; }
|
|
public LoginWith2faViewModel LoginWith2FaViewModel { get; set; }
|
|
public LoginWithLNURLAuthViewModel LoginWithLNURLAuthViewModel { get; set; }
|
|
}
|
|
}
|