mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
18 lines
384 B
C#
18 lines
384 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; }
|
|
}
|
|
}
|