Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
Darkstack 2fe08f938a REST to a .Net Standard Library
Test REST in discord bot and WPF
Small improvements
2019-03-16 12:22:52 +01:00

19 lines
537 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 int Order { get; set; }
public string WordPressTag { get; set; }
public string WordPressTagOs { get; set; }
public virtual IEnumerable<SeasonGame> Seasons { get; set; }
public virtual IEnumerable<EventGame> Events { get; set; }
}
}