Newer
Older
TestingWithoutInterfaces / src / Web / ViewModels / Manage / EnableAuthenticatorViewModel.cs
@Derek Comartin Derek Comartin on 5 Dec 2022 594 bytes Init
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.ModelBinding;

namespace Microsoft.eShopWeb.Web.ViewModels.Manage;

public class EnableAuthenticatorViewModel
{
    [Required]
    [StringLength(7, ErrorMessage = "The {0} must be at least {2} and at max {1} characters long.", MinimumLength = 6)]
    [DataType(DataType.Text)]
    [Display(Name = "Verification Code")]
    public string? Code { get; set; }

    [BindNever]
    public string? SharedKey { get; set; }

    [BindNever]
    public string? AuthenticatorUri { get; set; }
}