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

16 lines
464 B
C#
Raw Normal View History

2019-08-06 01:56:33 +02:00
using System.Collections.Generic;
namespace LaDOSE.Entity.Challonge
{
2022-07-30 22:55:46 +02:00
public class ChallongeParticipent
2019-08-06 01:56:33 +02:00
{
2022-07-30 22:55:46 +02:00
public int Id { get; set; }
2019-08-06 01:56:33 +02:00
public ChallongeTournament ChallongeTournament { get; set; }
public int ChallongeTournamentId { get; set; }
public int ChallongeId { get; set; }
public string Name { get; set; }
public int? Rank { get; set; }
public bool? IsMember { get; set; }
}
}