Skip to content

Instantly share code, notes, and snippets.

@ntakouris
Created July 30, 2019 08:37
Show Gist options
  • Save ntakouris/c67aafd25495111de16f52b12ad78362 to your computer and use it in GitHub Desktop.
Save ntakouris/c67aafd25495111de16f52b12ad78362 to your computer and use it in GitHub Desktop.
public CreateTagRequestValidator()
{
RuleFor(x => x.TagName)
.NotEmpty()
.Matches("^[a-zA-Z0-9 ]*$"); // alphanumerics and space
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment