btcpayserver/BTCPayServer/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs
d11n 6666786b7a
Unify Fido2 authentication under two-factor tab (#2866)
* Unify Fido2 authentication under two-factor tab

Closes #2754.

* Improve UI and wording

* Improve register FIDO2 device page
2021-09-13 10:16:52 +09:00

15 lines
345 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; }
}
}