Initial Commit ...
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
namespace xIdentityModels.Configurations {
|
||||
/// <summary>
|
||||
/// User Account Lock Policies
|
||||
/// </summary>
|
||||
public class XIdentityPolicyLockout {
|
||||
/// <summary>
|
||||
/// The String which Provide Time Span Delais
|
||||
/// between Lockout and UnLock a User Account
|
||||
/// this Provided String the Parsed before Use
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public string LockoutTimeSpanProvider { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// the Number of InvalidLoginAttemps which can
|
||||
/// Happens to Lockout User Account
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public byte MaxFailedAccessAttempts { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// determines Lockout mechanism allowed for new Users or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool AllowedForNewUsers { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user