using API.Models.Internal.Altersgruppen; using Microsoft.EntityFrameworkCore; namespace API.Database { public class ApplicationDbContext : DbContext { public ApplicationDbContext(DbContextOptions options) : base(options) { } public DbSet Altersgruppen { get; set; } } }