namespace EMQual;
///
/// Match result for a single team.
///
/// Name of the team
/// Number of goals scored by this team
public record TeamResult(string TeamName, int Goals);
///
/// Match results for one game.
///
/// Match result for the home team
/// Match result for the guest team
public record Match(TeamResult HomeTeam, TeamResult GuestTeam);