Html Generator (Added CefSharp / Chrome)

Updated Result API with Tournament Urls
Updated Setup
This commit is contained in:
2019-06-02 17:19:28 +02:00
parent 9d3a14d1c2
commit 6f682df13a
24 changed files with 2764 additions and 182 deletions

View File

@@ -13,17 +13,21 @@ namespace LaDOSE.Entity.Challonge
public class Result
{
public Result(string player, int gameId, int point) : this(player, gameId, 0, point)
public Result(string player, int gameId, int point) : this(player, gameId, 0,"", point)
{
}
public Result(string player, int gameId, int tournamentdId, int point)
public Result(string player, int gameId, int tournamentdId,string tournamentUrl, int point)
{
Player = player;
GameId = gameId;
Point = point;
TournamentUrl = tournamentUrl;
TournamentdId = tournamentdId;
}
@@ -33,6 +37,7 @@ namespace LaDOSE.Entity.Challonge
public int TournamentdId { get; set; }
public string TournamentUrl { get; set; }
public int GameId { get; set; }
public string Player { get; set; }
public int Point { get; set; }