namespace xIdentityModels.Configurations {
///
/// contains user profile configuration
///
public class XIdentityProfile {
///
/// determines user profile contain email or not
///
///
public bool ContainsEmail { get; set; }
///
/// determines user profile contains phone number or not
///
///
public bool ContainsPhoneNumber { get; set; }
///
/// determines user profile contains Roles collection or not
///
///
public bool ContainsRoles { get; set; }
public bool ContainsDateOfBirth { get; set; }
public bool ContainsLastLogin { get; set; }
public bool ContainsCreationDate { get; set; }
}
}