using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Threading.Tasks; using Microsoft.EntityFrameworkCore; using SitePi.Models; namespace SitePi { public class AppContext : DbContext { public DbSet Users { get; set; } public DbSet Quizzes { get; set; } public DbSet Questions { get; set; } public DbSet Choices { get; set; } public DbSet Bots { get; set; } public DbSet Profiles { get; set; } public AppContext(DbContextOptions o) : base(o) { } protected override void OnModelCreating(ModelBuilder modelBuilder) { } } }