using Microsoft.EntityFrameworkCore; using StudyLib.API.Models; using StudyLib.Models; using System; namespace StudyLib.API.Data { public class StudyLibContext : DbContext { public StudyLibContext(DbContextOptions options) : base(options) { } public DbSet Subjects { get; set; } public DbSet Assignments { get; set; } public DbSet Comments { get; set; } public DbSet Tests { get; set; } public DbSet SubjectDeleteRequests { get; set; } } }