namespace xIdentityModels.Configurations { /// /// Provide the Available Policies with their Default Values /// public class XIdentityPolicy { /// /// User Account Lock Policies /// /// public XIdentityPolicyLockout Lockout { get; set; } /// /// User Password Policies /// /// public XIdentityPolicyPassword Password { get; set; } /// /// the Policies for User for Allowing to SignIn /// /// public XIdentityPolicySignIn SignIn { get; set; } /// /// the Policies for User /// /// public XIdentityPolicyUser User { get; set; } /// /// the policies which determines how to /// populate user profile /// /// public XIdentityProfile Profile { get; set; } } }