Test tournament result.

This commit is contained in:
2019-05-29 02:15:31 +02:00
parent 1f5961cdd0
commit 959b3e922a
11 changed files with 124 additions and 20 deletions

View File

@@ -0,0 +1,20 @@
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; }
}
}