Files
EstusShots-Net/EstusShots.Server/Services/EstusShotsContext.cs
2020-02-25 22:39:40 +01:00

14 lines
328 B
C#

using EstusShots.Shared.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!;
}
}