Files
US-Entry-Coach/USEntryCoach.Server/Data/ApplicationDbContext.cs
2025-06-02 18:22:34 +02:00

10 lines
301 B
C#

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)
{
}