Initial Commit ...
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
namespace xIdentityModels.Configurations {
|
||||
/// <summary>
|
||||
/// the Policies for User for Allowing to SignIn
|
||||
/// </summary>
|
||||
public class XIdentityPolicySignIn {
|
||||
/// <summary>
|
||||
/// determines only enabled users can SignIn
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool RequiredEnabled { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// determines User must Confirm the given Email Address
|
||||
/// before Login or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool RequireConfirmedEmail { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// determines User must Confirm the given Phone Number
|
||||
/// before Login or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool RequireConfirmedPhoneNumber { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user