Update nach User-Passwort-Change

This commit is contained in:
2021-07-15 10:30:16 +02:00
parent 93e3957702
commit 1ff218a129
93 changed files with 7399 additions and 1071 deletions

40
Models/AspNetUsers.cs Normal file
View 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;
}
}