mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 16:03:01 +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;
|
|
}
|
|
}
|