Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/EventGame.cs
2018-10-12 20:52:59 +02:00

14 lines
330 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; }
}
}