Egy kis authentikáció

This commit is contained in:
2025-01-21 15:52:30 +01:00
parent 3b11c6adc5
commit 30d82fc9bf
12 changed files with 186 additions and 12 deletions
+2
View File
@@ -8,5 +8,7 @@ namespace WorkFlowCheck.DL.Entities
public string Email { get; set; } = null!;
public string FirstName { get; set; } = null!;
public string LastName { get; set; } = null!;
public string UserName { get; set; } = null!;
public string PasswordHash { get; set; }
}
}
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.DL.Seed
{
public static class DBInitializer
{
public static void Seed(AppDbContext dbContext)
{
}
}
}