Files
Apollon/Apollon.EntityFramework/TournamentsDBContext.cs
2022-08-20 01:41:56 +02:00

20 lines
454 B
C#

using Apollon.EntityFramework.DTOs;
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.EntityFramework
{
public class TournamentsDBContext : DbContext
{
public TournamentsDBContext(DbContextOptions options) : base(options)
{
}
public DbSet<TournamentDto> Tournaments { get; set; }
}
}