16 lines
350 B
C#
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; }
|
|
}
|