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