Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Challonge/TournamentsResult.cs

32 lines
663 B
C#

using System;
using System.Collections.Generic;
namespace LaDOSE.Entity.Challonge
{
public class TournamentsResult
{
public List<Participent> Participents { get; set; }
public List<Game> Games{ get; set; }
public List<Result> Results { get; set; }
}
public class Result
{
public Result(string player, int gameId, int point)
{
Player = player;
GameId = gameId;
Point = point;
}
public Result()
{
}
public int GameId { get; set; }
public string Player { get; set; }
public int Point { get; set; }
}
}