Update nach User-Passwort-Change
This commit is contained in:
18
Models/AspNetRoles.cs
Normal file
18
Models/AspNetRoles.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class AspNetRoles
|
||||
{
|
||||
public string Id { get; set; } = "";
|
||||
|
||||
public string Name { get; set; } = "";
|
||||
|
||||
public string NormalizedName { get; set; } = "";
|
||||
|
||||
public string ConcurrencyStamp { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
14
Models/AspNetUserRoles.cs
Normal file
14
Models/AspNetUserRoles.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class AspNetUserRoles
|
||||
{
|
||||
public string UserId { get; set; } = "";
|
||||
|
||||
public string RoleId { get; set; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
42
Models/AspNetUserRolle.cs
Normal file
42
Models/AspNetUserRolle.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
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; } = "";
|
||||
|
||||
}
|
||||
}
|
||||
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;
|
||||
|
||||
}
|
||||
}
|
||||
@@ -9,4 +9,8 @@
|
||||
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="NewFolder\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
||||
31
Models/Zeiten.cs
Normal file
31
Models/Zeiten.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace BWPMModels
|
||||
{
|
||||
public class Zeiten
|
||||
{
|
||||
public int ID { get; set; } = 0;
|
||||
|
||||
public string bezeichnung { get; set; } = "";
|
||||
|
||||
public string beschreibung { get; set; } = "";
|
||||
|
||||
public int? reihenfolge { get; set; } = 0;
|
||||
|
||||
public bool? aktiv { get; set; } = true;
|
||||
|
||||
public DateTime? erstellt_am { get; set; } = DateTime.Now;
|
||||
|
||||
public DateTime? mutiert_am { get; set; } = DateTime.Now;
|
||||
|
||||
public string mutierer { get; set; } = "";
|
||||
|
||||
public bool? oeffentlich { get; set; } = true;
|
||||
|
||||
public int? mandantnr { get; set; } = 0;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
||||
8b75e09d494f04401f5aa54161c0472e4e6e1446
|
||||
1bab01f86a65bd8417319af1a2e7814c091db5fa
|
||||
|
||||
@@ -15,3 +15,4 @@ E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.dll
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.pdb
|
||||
E:\Software-Projekte\Lehrlingsparcours\Core\BWPM\Models\obj\Debug\netcoreapp3.1\BWPMModels.csproj.AssemblyReference.cache
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user