13 lines
253 B
C#
13 lines
253 B
C#
|
using FluentValidation;
|
||
|
|
||
|
namespace MfGames.Nitride.Html.Validators;
|
||
|
|
||
|
public class IdentifyHtmlValidator : AbstractValidator<IdentifyHtml>
|
||
|
{
|
||
|
public IdentifyHtmlValidator()
|
||
|
{
|
||
|
this.RuleFor(x => x.IsHtmlTest)
|
||
|
.NotNull();
|
||
|
}
|
||
|
}
|