Files
EstusShots-Net/EstusShots.Server/Services/EstusShotsContext.cs
2020-02-26 21:50:58 +01:00

14 lines
328 B
C#

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