btcpayserver/BTCPayServer/Models/ManageViewModels/TwoFactorAuthenticationViewModel.cs

11 lines
213 B
C#
Raw Normal View History

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