mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 11:54:27 +01:00
Co-authored-by: Dennis Reimann <mail@dennisreimann.de> Co-authored-by: Nicolas Dorier <nicolas.dorier@gmail.com>
18 lines
392 B
C#
18 lines
392 B
C#
using System.Collections.Generic;
|
|
using BTCPayServer.Data;
|
|
|
|
namespace BTCPayServer.Models.ManageViewModels
|
|
{
|
|
public class TwoFactorAuthenticationViewModel
|
|
{
|
|
|
|
public int RecoveryCodesLeft { get; set; }
|
|
|
|
public bool Is2faEnabled { get; set; }
|
|
|
|
public List<Fido2Credential> Credentials { get; set; }
|
|
|
|
public string LoginCode { get; set; }
|
|
}
|
|
}
|