28 lines
764 B
C#
28 lines
764 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace TrackerLibrary.Models
|
|
{
|
|
public class MatchupEntryModel
|
|
{
|
|
/// <summary>
|
|
/// The unique identifier for the matchupEntry
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
/// <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; }
|
|
}
|
|
}
|