23 lines
665 B
C#
23 lines
665 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Apollon.EntityFramework.DTOs
|
|
{
|
|
public class TournamentDto
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Logo { get; set; }
|
|
public string Organisation { get; set; }
|
|
public string TournamentName { get; set; }
|
|
public string Competition { get; set; }
|
|
public string CompetitionImage { get; set; }
|
|
public DateTime StartDate { get; set; }
|
|
public DateTime EndDate { get; set; }
|
|
public string Location { get; set; }
|
|
public int Rounds { get; set; }
|
|
}
|
|
}
|