continuity/Server/DB/WonderkingContext.cs

16 lines
350 B
C#

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; }
}