using fxl.codes.kisekae.Entities; using Microsoft.EntityFrameworkCore; namespace fxl.codes.kisekae { public class KisekaeContext : DbContext { public KisekaeContext(DbContextOptions options) : base(options) { } public DbSet KisekaeSets { get; set; } public DbSet Configurations { get; set; } public DbSet Cels { get; set; } public DbSet CelConfigs { get; set; } public DbSet Renders { get; set; } public DbSet Palettes { get; set; } public DbSet PaletteColors { get; set; } } }