Initial Commit ...

This commit is contained in:
2024-01-25 04:42:47 +03:30
commit 844b4c47ad
50 changed files with 2615 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
namespace xIdentityModels.Configurations {
/// <summary>
/// Provide the Available Policies with their Default Values
/// </summary>
public class XIdentityPolicy {
/// <summary>
/// User Account Lock Policies
/// </summary>
/// <value></value>
public XIdentityPolicyLockout Lockout { get; set; }
/// <summary>
/// User Password Policies
/// </summary>
/// <value></value>
public XIdentityPolicyPassword Password { get; set; }
/// <summary>
/// the Policies for User for Allowing to SignIn
/// </summary>
/// <value></value>
public XIdentityPolicySignIn SignIn { get; set; }
/// <summary>
/// the Policies for User
/// </summary>
/// <value></value>
public XIdentityPolicyUser User { get; set; }
/// <summary>
/// the policies which determines how to
/// populate user profile
/// </summary>
/// <value></value>
public XIdentityProfile Profile { get; set; }
}
}