Easily validate user input using FluentValidation.

snippet
RuleFor(x => x.Email)
	.NotEmpty()
	.EmailAddress();