Newer
Older
TestingWithoutInterfaces / src / Web / ViewModels / Manage / TwoFactorAuthenticationViewModel.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 243 bytes Init
namespace Microsoft.eShopWeb.Web.ViewModels.Manage;

public class TwoFactorAuthenticationViewModel
{
    public bool HasAuthenticator { get; set; }
    public int RecoveryCodesLeft { get; set; }
    public bool Is2faEnabled { get; set; }
}