namespace xIdentityModels.Configurations { /// /// User Account Lock Policies /// public class XIdentityPolicyLockout { /// /// The String which Provide Time Span Delais /// between Lockout and UnLock a User Account /// this Provided String the Parsed before Use /// /// public string LockoutTimeSpanProvider { get; set; } /// /// the Number of InvalidLoginAttemps which can /// Happens to Lockout User Account /// /// public byte MaxFailedAccessAttempts { get; set; } /// /// determines Lockout mechanism allowed for new Users or not /// /// public bool AllowedForNewUsers { get; set; } } }