1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-16 01:55:37 +08:00

xmldoc commenting.

This commit is contained in:
Dean Herbert 2017-03-03 20:08:21 +09:00
parent c3cb225eef
commit 41cefd1cb3
No known key found for this signature in database
GPG Key ID: 46D71BF4958ABB49

View File

@ -1,19 +1,23 @@
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>. // Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Screens.Tournament namespace osu.Game.Screens.Tournament
{ {
public class Team public class Team
{ {
/// <summary>
/// The name of this team.
/// </summary>
public string FullName; public string FullName;
/// <summary>
/// Short acronym which appears in the group boxes post-selection.
/// </summary>
public string Acronym; public string Acronym;
/// <summary>
/// Two-letter flag acronym (ISO 3166 standard)
/// </summary>
public string FlagName; public string FlagName;
} }
} }