using ColdMint.scripts.database.dataPackEntity; using ColdMint.scripts.debug; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.DependencyInjection; namespace ColdMint.scripts.database; public class DataPackDbContext : DbContext { public DbSet DataPackInfo { get; set; } public DbSet ZipEntryInfo { get; set; } public DbSet ZipFileInfo { get; set; } public DbSet ItemInfo { get; set; } public DbSet SpriteInfo { get; set; } public DataPackDbContext(DbContextOptions options) : base(options) { } }