Commit Debut de rework
This commit is contained in:
25
LaDOSE.Src/LaDOSE.Entity/TournamentEntities/Tournament.cs
Normal file
25
LaDOSE.Src/LaDOSE.Entity/TournamentEntities/Tournament.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using System;
|
||||
|
||||
namespace LaDOSE.Entity
|
||||
{
|
||||
public class Tournament : Context.Entity
|
||||
{
|
||||
public Tournament()
|
||||
{
|
||||
}
|
||||
|
||||
public Tournament(string name, int challongeId, int smashId)
|
||||
{
|
||||
Name = name;
|
||||
ChallongeId = challongeId;
|
||||
SmashId = smashId;
|
||||
}
|
||||
|
||||
public String Name { get; set; }
|
||||
public int ChallongeId {get;set;}
|
||||
public int SmashId {get;set;}
|
||||
public int? GameId {get;set;}
|
||||
public Game Game { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user