1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 22:07:27 +08:00
osu-lazer/osu.Game.Tournament/Screens/Ladder/Components/TournamentGrouping.cs
2018-09-24 23:30:37 +09:00

18 lines
439 B
C#

// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.Collections.Generic;
namespace osu.Game.Tournament.Screens.Ladder.Components
{
public class TournamentGrouping
{
public string Name;
public string Description;
public int BestOf;
public List<int> Pairings = new List<int>();
}
}