Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs

23 lines
536 B
C#
Raw Permalink Normal View History

using System.Collections.Generic;
2018-10-06 14:16:42 +02:00
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 LongName { get; set; }
2018-10-05 00:18:37 +02:00
public string ImgUrl { get; set; }
public int Order { get; set; }
2019-03-09 14:03:25 +01:00
public string WordPressTag { get; set; }
public string WordPressTagOs { get; set; }
public int? SmashId { get; set; }
public List<Tournament> Tournaments { get; set; }
2018-10-05 00:18:37 +02:00
}
2018-10-05 00:18:37 +02:00
}