using System;
using System.Collections.Generic;
using System.Text;
namespace TrackerLibrary.Models
{
public class MatchupEntryModel
{
///
/// The unique identifier for the matchupEntry
///
public int Id { get; set; }
///
/// Represents one team in the matchup
///
public TeamModel TeamCompeting { get; set; }
///
/// Represents the score for this particular team
///
public double Score { get; set; }
///
/// Represents the matchup that this team came
/// from as winner
///
public MatchupModel ParentMatchup { get; set; }
}
}