This repository has been archived on 2023-02-02. You can view files and clone it, but cannot push or open issues or pull requests.
mfgames-nitride-cil/src/MfGames.Nitride.Markdown/Validators/IdentifyMarkdownValidator.cs
D. Moonfire aac4b4373d
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
feat(html): added identify operations
2023-01-21 21:14:36 -06:00

13 lines
273 B
C#

using FluentValidation;
namespace MfGames.Nitride.Markdown.Validators;
public class IdentifyMarkdownValidator : AbstractValidator<IdentifyMarkdown>
{
public IdentifyMarkdownValidator()
{
this.RuleFor(x => x.IsMarkdownTest)
.NotNull();
}
}