using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace LaDOSE.Entity { public class Game : Context.Entity { public string Name { get; set; } public string LongName { get; set; } public string ImgUrl { get; set; } public int Order { get; set; } public string WordPressTag { get; set; } public string WordPressTagOs { get; set; } public int? SmashId { get; set; } public virtual IEnumerable Seasons { get; set; } public virtual IEnumerable Events { get; set; } } public class SmashParticipent : Context.Entity { public string Name { get; set; } public string Tag { get; set; } public int? SmashId{ get; set; } } }