2019-05-30 00:42:12 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Entity.Challonge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TournamentsResult
|
|
|
|
|
|
{
|
2019-08-06 01:56:33 +02:00
|
|
|
|
public List<ChallongeParticipent> Participents { get; set; }
|
2019-05-30 00:42:12 +02:00
|
|
|
|
public List<Game> Games{ get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public List<Result> Results { get; set; }
|
2025-03-07 10:56:24 +01:00
|
|
|
|
public string Slug { get; set; }
|
2019-05-30 00:42:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class Result
|
|
|
|
|
|
{
|
2019-06-02 17:19:28 +02:00
|
|
|
|
|
2019-09-05 22:22:35 +02:00
|
|
|
|
public Result(string player, int gameId, int point,int rank) : this(player, gameId, 0,"", point,rank)
|
2019-05-30 22:06:02 +02:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-06-02 17:19:28 +02:00
|
|
|
|
|
2019-09-05 22:22:35 +02:00
|
|
|
|
public Result(string player, int gameId, int tournamentdId,string tournamentUrl, int point,int rank)
|
2019-05-30 00:42:12 +02:00
|
|
|
|
{
|
|
|
|
|
|
Player = player;
|
|
|
|
|
|
GameId = gameId;
|
|
|
|
|
|
Point = point;
|
2019-06-02 17:19:28 +02:00
|
|
|
|
TournamentUrl = tournamentUrl;
|
2019-05-30 22:06:02 +02:00
|
|
|
|
TournamentdId = tournamentdId;
|
2019-09-05 22:22:35 +02:00
|
|
|
|
Rank = rank;
|
2019-05-30 00:42:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2019-05-30 22:06:02 +02:00
|
|
|
|
|
2019-05-30 00:42:12 +02:00
|
|
|
|
public Result()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-30 22:06:02 +02:00
|
|
|
|
public int TournamentdId { get; set; }
|
2019-06-02 17:19:28 +02:00
|
|
|
|
public string TournamentUrl { get; set; }
|
2019-05-30 00:42:12 +02:00
|
|
|
|
public int GameId { get; set; }
|
|
|
|
|
|
public string Player { get; set; }
|
|
|
|
|
|
public int Point { get; set; }
|
2019-09-05 22:22:35 +02:00
|
|
|
|
public int Rank { get; set; }
|
2019-05-30 00:42:12 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|