ready for database
This commit is contained in:
20
Apollon.EntityFramework/DTOs/TournamentDto.cs
Normal file
20
Apollon.EntityFramework/DTOs/TournamentDto.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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 Organisation { get; set; }
|
||||
public string TournamentName { get; set; }
|
||||
public string Competition { get; set; }
|
||||
public DateTime StartDate { get; set; }
|
||||
public DateTime EndDate { get; set; }
|
||||
public string Location { get; set; }
|
||||
public int Rounds { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user