Html Generator (Added CefSharp / Chrome)
Updated Result API with Tournament Urls Updated Setup
This commit is contained in:
@@ -8,5 +8,6 @@ namespace LaDOSE.Entity.Challonge
|
||||
public string Name { get; set; }
|
||||
public Game Game { get; set; }
|
||||
public List<Participent> Participents { get; set; }
|
||||
public string Url { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
|
||||
@@ -6,6 +6,7 @@ namespace LaDOSE.Entity
|
||||
public class Game : Context.Entity
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public string LongName { get; set; }
|
||||
public string ImgUrl { get; set; }
|
||||
public int Order { get; set; }
|
||||
public string WordPressTag { get; set; }
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
<Platforms>AnyCPU;x64</Platforms>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
||||
Reference in New Issue
Block a user