Suppression Challonge in Db.

This commit is contained in:
2022-07-30 22:55:46 +02:00
parent 019ca2d543
commit 501e192900
4 changed files with 50 additions and 31 deletions

View File

@@ -2,9 +2,9 @@
namespace LaDOSE.Entity.Challonge
{
public class ChallongeParticipent : Context.Entity
public class ChallongeParticipent
{
public int Id { get; set; }
public ChallongeTournament ChallongeTournament { get; set; }
public int ChallongeTournamentId { get; set; }
public int ChallongeId { get; set; }

View File

@@ -3,8 +3,9 @@ using System.Collections.Generic;
namespace LaDOSE.Entity.Challonge
{
public class ChallongeTournament : Context.Entity
public class ChallongeTournament
{
public int Id { get; set; }
public int ChallongeId { get; set; }
public string Name { get; set; }
public Game Game { get; set; }