2018-10-05 00:18:37 +02:00
|
|
|
|
using System;
|
2018-10-06 14:16:42 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2018-10-05 00:18:37 +02:00
|
|
|
|
|
|
|
|
|
|
namespace LaDOSE.Entity
|
|
|
|
|
|
{
|
2018-10-12 20:52:59 +02:00
|
|
|
|
public class Game : Context.Entity
|
2018-10-05 00:18:37 +02:00
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
public string ImgUrl { get; set; }
|
2018-10-06 14:16:42 +02:00
|
|
|
|
|
|
|
|
|
|
public virtual IEnumerable<SeasonGame> Seasons { get; set; }
|
2018-10-07 15:15:11 +02:00
|
|
|
|
public virtual IEnumerable<EventGame> Events { get; set; }
|
|
|
|
|
|
|
2018-10-05 00:18:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|