CodeLiturgy.Dashboard/CodeLiturgy.Data.Application/ApplicationUser/ApplicationUserUnique.cs

25 lines
917 B
C#
Raw Normal View History

2022-09-12 17:57:37 +03:00
using System;
using MapTo;
2022-09-27 20:12:13 +03:00
namespace BlueWest.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; }
}
}