Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public GroupValidator()
  2. {
  3. Include(new BaseValidator());
  4.  
  5. RuleFor(x => x.CreatedBy)
  6. .Cascade(CascadeMode.StopOnFirstFailure)
  7. .NotEmpty()
  8. .Length(2, 500).WithMessage("Created by should not be empty and between 2 and 500 characters.");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement