btcpayserver/BTCPayServer/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs

18 lines
384 B
C#
Raw Normal View History

using System.Collections.Generic;
using BTCPayServer.Data;
2017-09-13 15:47:34 +09:00
namespace BTCPayServer.Models.ManageViewModels
{
public class TwoFactorAuthenticationViewModel
{
public int RecoveryCodesLeft { get; set; }
public bool Is2faEnabled { get; set; }
2021-12-31 16:59:02 +09:00
public List<Fido2Credential> Credentials { get; set; }
public string LoginCode { get; set; }
2017-09-13 15:47:34 +09:00
}
}