websitepanel/WebsitePanel/Sources/WebsitePanel.Providers.Base/HostedSolution/OrganizationPasswordSettings.cs
2015-04-28 05:10:48 -07:00

20 lines
No EOL
773 B
C#

namespace WebsitePanel.Providers.HostedSolution
{
public class OrganizationPasswordSettings
{
public int MinimumLength { get; set; }
public int MaximumLength { get; set; }
public int EnforcePasswordHistory { get; set; }
public int MaxPasswordAge { get; set; }
public bool LockoutSettingsEnabled { get; set; }
public int AccountLockoutDuration { get; set; }
public int AccountLockoutThreshold { get; set; }
public int ResetAccountLockoutCounterAfter { get; set; }
public bool PasswordComplexityEnabled { get; set; }
public int UppercaseLettersCount { get; set; }
public int NumbersCount { get; set; }
public int SymbolsCount { get; set; }
}
}