Update nach User-Passwort-Change
This commit is contained in:
40
Models/AspNetUsers.cs
Normal file
40
Models/AspNetUsers.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class AspNetUsers
|
||||
{
|
||||
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;
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user