using Microsoft.EntityFrameworkCore; using Moonlight.ApiServer.Configuration; using Moonlight.ApiServer.Helpers; using MoonlightServers.ApiServer.Database.Entities; namespace MoonlightServers.ApiServer.Database; public class ServersDataContext : DatabaseContext { public override string Prefix { get; } = "Servers"; public DbSet Allocations { get; set; } public DbSet Nodes { get; set; } public DbSet Servers { get; set; } public DbSet ServerBackups { get; set; } public DbSet ServerVariables { get; set; } public DbSet Stars { get; set; } public DbSet StarDockerImages { get; set; } public DbSet StarVariables { get; set; } public ServersDataContext(AppConfiguration configuration) : base(configuration) { } }