using Microsoft.EntityFrameworkCore; using Minecraft_Realms_Emulator.Entities; namespace Minecraft_Realms_Emulator.Data { public class DataContext(DbContextOptions options) : DbContext(options) { public DbSet Worlds { get; set; } public DbSet Subscriptions { get; set; } public DbSet Connections { get; set; } public DbSet Backups { get; set; } public DbSet Invites { get; set; } public DbSet Players { get; set; } public DbSet Configuration { get; set; } } }