using System; using System.Collections.Generic; using System.Text; namespace TrackerLibrary { /// /// Represents one match in the tournament. /// public class MatchupModel { /// /// The set of teams that were involved in this match. /// public List Entries { get; set; } = new List(); /// /// The winner of the match. /// public TeamModel Winner { get; set; } /// /// Which round this match is a part of. /// public int MatchupRound { get; set; } } }