using EstusShots.Shared.Models; using Microsoft.EntityFrameworkCore; namespace EstusShots.Server.Services { public class EstusShotsContext : DbContext { public EstusShotsContext(DbContextOptions options) : base(options) { } public DbSet Seasons { get; set; } = default!; } }