using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.Identity.EntityFrameworkCore; using Microsoft.EntityFrameworkCore; using SurveyBackend.Core.Models; namespace SurveyBackend.Infrastructure.Data; public class ApplicationDbContext : DbContext { public DbSet Users { get; set; } public DbSet Groups { get; set; } public ApplicationDbContext(DbContextOptions options) : base(options) { } }