2022-09-12 17:57:37 +03:00
|
|
|
using System;
|
|
|
|
using MapTo;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application.Users
|
2022-09-12 17:57:37 +03:00
|
|
|
{
|
|
|
|
[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; }
|
|
|
|
}
|
|
|
|
}
|