Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
2022-03-20 02:59:48 +01:00

23 lines
536 B
C#

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 List<Tournament> Tournaments { get; set; }
}
}