mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 14:34:23 +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; }
|
|
}
|
|
}
|