Test tournament result.
This commit is contained in:
10
LaDOSE.Src/LaDOSE.Entity/Challonge/Participent.cs
Normal file
10
LaDOSE.Src/LaDOSE.Entity/Challonge/Participent.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace LaDOSE.Entity.Challonge
|
||||
{
|
||||
public class Participent
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public int? Rank { get; set; }
|
||||
public bool? IsMember { get; set; }
|
||||
}
|
||||
}
|
||||
12
LaDOSE.Src/LaDOSE.Entity/Challonge/Tournament.cs
Normal file
12
LaDOSE.Src/LaDOSE.Entity/Challonge/Tournament.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LaDOSE.Entity.Challonge
|
||||
{
|
||||
public class Tournament
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string Name { get; set; }
|
||||
public string Game { get; set; }
|
||||
public List<Participent> Participents { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user