10 lines
241 B
C#
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; }
|
|
}
|
|
} |