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.

31 lines
823 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace CustomerOnlineV2.Common.Models.Notification
  7. {
  8. public class PasswordGenerator
  9. {
  10. public class PasswordOptions
  11. {
  12. public int RequiredLength { get; set; }
  13. public int RequiredUniqueChars { get; set; }
  14. public bool RequireLowercase { get; set; }
  15. public bool RequireDigit { get; set; }
  16. public bool RequireUppercase { get; set; }
  17. public bool RequireNonAlphanumeric { get; set; }
  18. }
  19. }
  20. public class Mapping
  21. {
  22. public string SValue { get; set; }
  23. public string SText { get; set; }
  24. public string DValue { get; set; }
  25. public string DText { get; set; }
  26. }
  27. }