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

17 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace LaDOSE.Entity
{
public class Game : Context.Entity
{
public string Name { get; set; }
public string ImgUrl { get; set; }
public virtual IEnumerable<SeasonGame> Seasons { get; set; }
public virtual IEnumerable<EventGame> Events { get; set; }
}
}