Files
Apollon/Apollon.EntityFramework/TournamentsDBContext.cs
2022-08-20 02:48:51 +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; }
}
}