Files
LaDOSE/LaDOSE.Src/LaDOSE.DTO/TournamentDTO.cs
2019-05-29 02:15:31 +02:00

20 lines
487 B
C#

using System.Collections.Generic;
namespace LaDOSE.DTO
{
public class TournamentDTO
{
public int Id { get; set; }
public string Name { get; set; }
public string Game { get; set; }
public List<ParticipentDTO> Participents {get;set;}
}
public class ParticipentDTO
{
public int Id { get; set; }
public string Name { get; set; }
public int? Rank { get; set; }
public bool? IsMember{ get; set; }
}
}