Commit Debut de rework
This commit is contained in:
30
LaDOSE.Src/LaDOSE.Entity/TournamentEntities/Event.cs
Normal file
30
LaDOSE.Src/LaDOSE.Entity/TournamentEntities/Event.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace LaDOSE.Entity
|
||||
{
|
||||
/// <summary>
|
||||
/// Represent a Event (Multiple tournaments)
|
||||
/// </summary>
|
||||
public class Event : Context.Entity
|
||||
{
|
||||
public Event()
|
||||
{
|
||||
}
|
||||
|
||||
public Event(string name,int? smashId)
|
||||
{
|
||||
Name = name;
|
||||
SmashId = smashId;
|
||||
}
|
||||
|
||||
public String Name { get; set; }
|
||||
public int? SmashId { get; set; }
|
||||
|
||||
public DateTime Date { get; set; }
|
||||
|
||||
public List<Tournament> Tournaments { get; set; }
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user