mirror of
https://github.com/ppy/osu.git
synced 2024-11-19 18:42:54 +08:00
17 lines
308 B
C#
17 lines
308 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace osu.Game.Screens.Tournament
|
|||
|
{
|
|||
|
public class Team
|
|||
|
{
|
|||
|
public string FullName;
|
|||
|
public string Acronym;
|
|||
|
|
|||
|
public string FlagName;
|
|||
|
}
|
|||
|
}
|