Add project files.
This commit is contained in:
23
TrackerLibrary/MatchupEntryModel.cs
Normal file
23
TrackerLibrary/MatchupEntryModel.cs
Normal file
@ -0,0 +1,23 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace TrackerLibrary
|
||||
{
|
||||
public class MatchupEntryModel
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents one team in the matchup
|
||||
/// </summary>
|
||||
public TeamModel TeamCompeting { get; set; }
|
||||
/// <summary>
|
||||
/// Represents the score for this particular team
|
||||
/// </summary>
|
||||
public double Score { get; set; }
|
||||
/// <summary>
|
||||
/// Represents the matchup that this team came
|
||||
/// from as winner
|
||||
/// </summary>
|
||||
public MatchupModel ParentMatchup { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user