Newer
Older
GuardClauses / src / Web / ViewModels / Manage / TwoFactorAuthenticationViewModel.cs
@Derek Comartin Derek Comartin on 15 Aug 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; }
}