using System; using System.Collections.Generic; using System.Text; namespace BWPMModels { public class AspNetUserRolle { 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; } = true; public string PasswordHash { get; set; } = ""; public string SecurityStamp { get; set; } = ""; public string ConcurrencyStamp { get; set; } = ""; public string PhoneNumber { get; set; } = ""; public bool PhoneNumberConfirmed { get; set; } = true; public bool TwoFactorEnabled { get; set; } = true; public DateTimeOffset? LockoutEnd { get; set; } = DateTime.Now; public bool LockoutEnabled { get; set; } = true; public int AccessFailedCount { get; set; } = 0; public string RoleId { get; set; } = ""; } }