2017-03-03 12:17:24 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2017-02-27 13:19:07 +08:00
|
|
|
|
namespace osu.Game.Screens.Tournament
|
|
|
|
|
{
|
|
|
|
|
public class Team
|
|
|
|
|
{
|
2017-03-03 19:08:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The name of this team.
|
|
|
|
|
/// </summary>
|
2017-02-27 13:19:07 +08:00
|
|
|
|
public string FullName;
|
2017-03-03 19:08:21 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Short acronym which appears in the group boxes post-selection.
|
|
|
|
|
/// </summary>
|
2017-02-27 13:19:07 +08:00
|
|
|
|
public string Acronym;
|
|
|
|
|
|
2017-03-03 19:08:21 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Two-letter flag acronym (ISO 3166 standard)
|
|
|
|
|
/// </summary>
|
2017-02-27 13:19:07 +08:00
|
|
|
|
public string FlagName;
|
|
|
|
|
}
|
|
|
|
|
}
|