Initial Commit ...
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace xIdentityModels.Descriptors {
|
||||
/// <summary>
|
||||
/// contains default users information
|
||||
/// </summary>
|
||||
public class XIdentityUserDescriptor {
|
||||
public string Id { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string UserName { get; set; }
|
||||
public string Email { get; set; }
|
||||
public bool EmailConfirmed { get; set; }
|
||||
public string PhoneNumber { get; set; }
|
||||
public bool PhoneNumberConfirmed { get; set; }
|
||||
public string Password { get; set; }
|
||||
public string Role { get; set; }
|
||||
public bool IsEnable { get; set; }
|
||||
public bool IsBanned { get; set; }
|
||||
public string DateOfBirth { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user