25 lines
920 B
C#
25 lines
920 B
C#
using System;
|
|
using MapTo;
|
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
|
{
|
|
[MapFrom(typeof(ApplicationUser))]
|
|
public partial class ApplicationUserUnique
|
|
{
|
|
public string Id { get; set; }
|
|
public string UserName { get; set; }
|
|
public string NormalizedUserName { get; set; }
|
|
public string Email { get; set; }
|
|
public string NormalizedEmail { get; set; }
|
|
public bool EmailConfirmed { get; set; }
|
|
public string PasswordHash { get; set; }
|
|
public string SecurityStamp { get; set; }
|
|
public string PhoneNumber { get; set; }
|
|
public bool PhoneNumberConfirmed { get; set; }
|
|
public bool TwoFactorEnabled { get; set; }
|
|
public DateTimeOffset? LockoutEnd { get; set; }
|
|
public bool LockoutEnabled { get; set; }
|
|
public int AccessFailedCount { get; set; }
|
|
public string ConcurrencyStamp { get; set; }
|
|
}
|
|
} |