namespace Umbraco.Core.Configuration { /// /// Password configuration /// public interface IPasswordConfiguration { int RequiredLength { get; } bool RequireNonLetterOrDigit { get; } bool RequireDigit { get; } bool RequireLowercase { get; } bool RequireUppercase { get; } string HashAlgorithmType { get; } // TODO: This doesn't really belong here int MaxFailedAccessAttemptsBeforeLockout { get; } } }