using System; using System.Web; /// /// Summary description for PasswordSetting /// public class PasswordSetting { public PasswordSetting() { // // TODO: Add constructor logic here // } //password age , 80, 180, 360 days public int Duration { get; set; } //password minimum length public int MinLength { get; set; } //password maximum length public int MaxLength { get; set; } //password Numbers length public int NumsLength { get; set; } //password Upper letter length public int UpperLength { get; set; } //password Special character length public int SpecialLength { get; set; } //password valid special characters public string SpecialChars { get; set; } }