Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/EventGame.cs
2018-10-07 18:06:38 +02:00

14 lines
329 B
C#

namespace LaDOSE.Entity
{
public class EventGame
{
public int EventId { get; set; }
public Event Event { get; set; }
public int GameId { get; set; }
public Game Game { get; set; }
public int? ChallongeId { get; set; }
public string ChallongeUrl { get; set; }
}
}