Newer
Older
InMemoryBus / src / Web / ViewModels / Manage / TwoFactorAuthenticationViewModel.cs
@Derek Comartin Derek Comartin on 17 Jan 2023 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; }
}