Files
2024-01-25 04:42:47 +03:30

37 lines
1.1 KiB
C#

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; }
}
}