Save before testing router

This commit is contained in:
Simon Lübeß
2025-06-02 18:22:34 +02:00
parent 883252c049
commit 0ef2c73c71
14 changed files with 1047 additions and 106 deletions

View File

@ -0,0 +1,10 @@
using Microsoft.AspNetCore.Identity;
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace USEntryCoach.Server.Data;
public class ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : IdentityDbContext<IdentityUser>(options)
{
}