Skip to content

Instantly share code, notes, and snippets.

@DavidRogersDev
Created April 4, 2020 10:13
Show Gist options
  • Save DavidRogersDev/adad90ad938d94d57db11e02d9cfc092 to your computer and use it in GitHub Desktop.
Save DavidRogersDev/adad90ad938d94d57db11e02d9cfc092 to your computer and use it in GitHub Desktop.
Gist for Medium Article - CreateUserValidator
public class CreateUserValidator: AbstractValidator<CreateUserDto>
{
public CreateUserValidator()
{
RuleFor(m => m.Password).NotEmpty();
RuleFor(m => m.UserName).NotEmpty();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment