mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-08 16:44:28 +01:00
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; }
|
|
}
|
|
}
|