2019-05-29 02:15:31 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Entity.Challonge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Tournament
|
|
|
|
|
|
{
|
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public string Name { get; set; }
|
2019-05-30 00:42:12 +02:00
|
|
|
|
public Game Game { get; set; }
|
2019-05-29 02:15:31 +02:00
|
|
|
|
public List<Participent> Participents { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|