You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
236 B

1 year ago
  1. namespace Business.KftcPasswordRule
  2. {
  3. /// <summary>
  4. /// </summary>
  5. public interface PasswordRule
  6. {
  7. /// <summary>
  8. /// </summary>
  9. PasswordValidationResult Validate(ValidationModel model);
  10. }
  11. }