namespace xIdentityModels.Configurations {
///
/// User Password Policies
///
public class XIdentityPolicyPassword {
///
/// determines Password must contains digits or not
///
///
public bool RequireDigit { get; set; }
///
/// determines the minimum allowed length for a password
///
///
public byte RequiredLength { get; set; }
///
/// determines the number of Unique Chars must be included in a Password
///
///
public byte RequiredUniqueChars { get; set; }
///
/// determines Password must contains LowerCase chars or not
///
///
public bool RequireLowercase { get; set; }
///
/// determines Password must contains Non-Alphabetical chars or not
///
///
public bool RequireNonAlphanumeric { get; set; }
///
/// determines Password must contains UpperCase chars or not
///
///
public bool RequireUppercase { get; set; }
}
}