Tournament Dashboard fixed, started to wire up tournamentviewer form
This commit is contained in:
@ -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>
|
||||
|
||||
Reference in New Issue
Block a user