using JetBrains.Annotations;

namespace Server.DB;

using Documents;
using Microsoft.EntityFrameworkCore;

public class WonderkingContext : DbContext
{
    public WonderkingContext([NotNull] DbContextOptions options) : base(options)
    {
    }

    public DbSet<Account> Accounts { get; set; }
    public DbSet<Character> Characters { get; set; }
}