using System;
using System.Collections.Generic;
using System.Text;
namespace TrackerLibrary.Models
{
///
/// Represents one match in the tournament.
///
public class MatchupModel
{
///
/// The unique identifier for the matchup
///
public int Id { get; set; }
///
/// 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; }
}
}