organization password settings added (without GPO)
This commit is contained in:
parent
e320b4c79e
commit
60214cdcf1
40 changed files with 2351 additions and 152 deletions
|
@ -0,0 +1,19 @@
|
|||
namespace WebsitePanel.Providers.HostedSolution
|
||||
{
|
||||
public class OrganizationPasswordSettings
|
||||
{
|
||||
public int MinimumLength { get; set; }
|
||||
public int MaximumLength { get; set; }
|
||||
public int EnforcePasswordHistory { 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; }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue