Files
LaDOSE/LaDOSE.Src/LaDOSE.Entity/Game.cs
Darkstack aebc60d17f Smash test
test debug

Result

Disctinct by selector
Refactoring Smash/Challonge

Test Resultat

Html for Kiouze
2022-03-19 23:05:13 +01:00

29 lines
803 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 virtual IEnumerable<SeasonGame> Seasons { get; set; }
public virtual IEnumerable<EventGame> Events { get; set; }
}
public class SmashParticipent : Context.Entity
{
public string Name { get; set; }
public string Tag { get; set; }
public int? SmashId{ get; set; }
}
}