using DiscordApp.Database.Tables; using Microsoft.AspNetCore.DataProtection.Repositories; using Microsoft.EntityFrameworkCore; namespace DiscordApp.Database { public class AppDbContext : DbContext { public AppDbContext(DbContextOptions options) : base(options) { } public DbSet Passport { get; set; } public DbSet Autobranches { get; set; } public DbSet ArtPatents { get; set; } public DbSet BookPatents { get; set; } public DbSet Bizness { get; set; } public DbSet Reports { get; set; } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } } }