You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
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; } = "";
|
|
|
|
}
|
|
}
|