btcpayserver/BTCPayServer/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs
2021-12-31 16:59:02 +09:00

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; }
}
}