diff --git a/osu.Game/Screens/Tournament/Teams/Team.cs b/osu.Game/Screens/Tournament/Teams/Team.cs
index 8da5cfa69e..cfb35d58f2 100644
--- a/osu.Game/Screens/Tournament/Teams/Team.cs
+++ b/osu.Game/Screens/Tournament/Teams/Team.cs
@@ -5,11 +5,21 @@ using osu.Game.Users;
namespace osu.Game.Screens.Tournament.Teams
{
- public class Team : Country
+ public class Team
{
+ ///
+ /// The name of this team.
+ ///
+ public string FullName;
+
///
/// Short acronym which appears in the group boxes post-selection.
///
public string Acronym;
+
+ ///
+ /// Name of the file containing the flag.
+ ///
+ public string FlagName;
}
}