Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Challonge/Tournament.cs

12 lines
293 B
C#
Raw Normal View History

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; }
public string Game { get; set; }
public List<Participent> Participents { get; set; }
}
}