Try your search with a different keyword or use * as a wildcard.
using FluentValidation;
using Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Models;
using Nop.Services.Localization;
using Nop.Web.Framework.Validators;
namespace Nop.Plugin.MultiFactorAuth.GoogleAuthenticator.Validators;
///
/// Represents an validator.
///
public class TokenModelValidator : BaseNopValidator
{
public TokenModelValidator(ILocalizationService localizationService)
{
RuleFor(model => model.Token).NotEmpty()
.WithMessageAwait(localizationService.GetResourceAsync("Plugins.MultiFactorAuth.GoogleAuthenticator.Fields.Code.Required"));
RuleFor(model => model.Token).Matches(@"^[0-9]{6,6}$")
.WithMessageAwait(localizationService.GetResourceAsync("Plugins.MultiFactorAuth.GoogleAuthenticator.Fields.Code.Wrong"));
}
}