12 lines
234 B
C#
12 lines
234 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; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|