Try your search with a different keyword or use * as a wildcard.
using FluentValidation;
using Nop.Core.Domain.Topics;
using Nop.Services.Localization;
using Nop.Web.Areas.Admin.Models.Templates;
using Nop.Web.Framework.Validators;
namespace Nop.Web.Areas.Admin.Validators.Templates;
public partial class TopicTemplateValidator : BaseNopValidator
{
public TopicTemplateValidator(ILocalizationService localizationService)
{
RuleFor(x => x.Name).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.System.Templates.Topic.Name.Required"));
RuleFor(x => x.ViewPath).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.System.Templates.Topic.ViewPath.Required"));
SetDatabaseValidationRules();
}
}