namespace xIdentityModels.Configurations {
///
/// the Policies for User for Allowing to SignIn
///
public class XIdentityPolicySignIn {
///
/// determines only enabled users can SignIn
///
///
public bool RequiredEnabled { get; set; }
///
/// determines User must Confirm the given Email Address
/// before Login or not
///
///
public bool RequireConfirmedEmail { get; set; }
///
/// determines User must Confirm the given Phone Number
/// before Login or not
///
///
public bool RequireConfirmedPhoneNumber { get; set; }
}
}