Initial Commit ...
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
namespace xIdentityModels.Configurations {
|
||||
/// <summary>
|
||||
/// contains user profile configuration
|
||||
/// </summary>
|
||||
public class XIdentityProfile {
|
||||
/// <summary>
|
||||
/// determines user profile contain email or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool ContainsEmail { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// determines user profile contains phone number or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool ContainsPhoneNumber { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// determines user profile contains Roles collection or not
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public bool ContainsRoles { get; set; }
|
||||
|
||||
public bool ContainsDateOfBirth { get; set; }
|
||||
|
||||
public bool ContainsLastLogin { get; set; }
|
||||
|
||||
public bool ContainsCreationDate { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user