Skip to content

Instantly share code, notes, and snippets.

@kevindente
Forked from karlseguin/gist:361299
Created April 9, 2010 16:14
Show Gist options
  • Save kevindente/361324 to your computer and use it in GitHub Desktop.
Save kevindente/361324 to your computer and use it in GitHub Desktop.
public class Step3Validator : ClassValidator<Step3>
{
public Step3Validator()
{
RuleFor(s => s.MessageGroup).Required().WithMessage("This field is required");
RuleFor(s => s.MessageGroup).Length(5, 5).Pattern(ValidationPattern.Number).WithMessage("Please enter a 5 digit number");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment