Initial commit

This commit is contained in:
2026-09-17 16:44:33 +02:00
commit dbfe7bced7
119 changed files with 85507 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
using TemplateWeb.Entities;
namespace TemplateWeb.Data;
public class AppDbContext : IdentityDbContext<UserEntity>
{
public AppDbContext(DbContextOptions<AppDbContext> options)
: base(options)
{
}
}