Tournament Dashboard fixed, started to wire up tournamentviewer form

This commit is contained in:
2020-04-12 21:17:01 +02:00
parent dee234408d
commit 8d3e6fdfa4
11 changed files with 294 additions and 29 deletions

View File

@ -11,6 +11,10 @@ namespace TrackerLibrary.Models
/// </summary>
public int Id { get; set; }
/// <summary>
/// The unique identifier for the team
/// </summary>
public int TeamCompetingId { get; set; }
/// <summary>
/// Represents one team in the matchup
/// </summary>
public TeamModel TeamCompeting { get; set; }
@ -19,6 +23,10 @@ namespace TrackerLibrary.Models
/// </summary>
public double Score { get; set; }
/// <summary>
/// The unique identifier for the parent matchup (team)
/// </summary>
public int ParentMatchupId { get; set; }
/// <summary>
/// Represents the matchup that this team came
/// from as winner
/// </summary>