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