/// <summary>
 /// Constructs an instance of the PasswordValidationSettings class
 /// </summary>
 public PasswordValidationSettings()
 {
   StandardWordLists = new List<StandardWordList>();
   CustomWordLists = new List<string>();
   WordListProcessOptions = new WordListProcessOptions();
   CustomValidators = new List<Type>();
   CustomSettings = new Dictionary<Type, object>();
 }
 /// <summary>
 /// Constructs an instance of the PasswordValidationSettings class
 /// </summary>
 public PasswordValidationSettings()
 {
     StandardWordLists      = new List <StandardWordList>();
     CustomWordLists        = new List <string>();
     WordListProcessOptions = new WordListProcessOptions();
     CustomValidators       = new List <Type>();
     CustomSettings         = new Dictionary <Type, object>();
 }