mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 14:46:38 +09:00
10 lines
206 B
C#
10 lines
206 B
C#
using System.Collections.Generic;
|
|
|
|
namespace osu.Game.Tournament.Screens.Ladder.Components
|
|
{
|
|
public class LadderInfo
|
|
{
|
|
public List<MatchPairing> Pairings = new List<MatchPairing>();
|
|
}
|
|
}
|