Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Challonge/Participent.cs
2019-05-29 02:15:31 +02:00

10 lines
241 B
C#

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; }
}
}