Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/EventGame.cs

14 lines
329 B
C#
Raw Normal View History

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; }
2018-10-07 18:06:38 +02:00
public int? ChallongeId { get; set; }
public string ChallongeUrl { get; set; }
}
}