btcpayserver/BTCPayServer/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs
2020-07-13 10:58:53 +02:00

10 lines
213 B
C#

namespace BTCPayServer.Models.ManageViewModels
{
public class TwoFactorAuthenticationViewModel
{
public int RecoveryCodesLeft { get; set; }
public bool Is2faEnabled { get; set; }
}
}