mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 06:24:24 +01:00
11 lines
283 B
C#
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; }
|
|
}
|
|
}
|