using JetBrains.Annotations; using Microsoft.EntityFrameworkCore; using Server.DB.Documents; namespace Server.DB; public class WonderkingContext : DbContext { public WonderkingContext([NotNull] DbContextOptions options) : base(options) { } public DbSet Accounts { get; set; } public DbSet Characters { get; set; } }