// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System.Collections.Generic; using Newtonsoft.Json; using osu.Framework.Bindables; using osu.Game.Tournament.Components; using osu.Game.Tournament.Screens.Ladder.Components; namespace osu.Game.Tournament { public class LadderInfo { public List Pairings = new List(); public List Progressions = new List(); public List Groupings = new List(); public List Teams = new List(); [JsonIgnore] public Bindable CurrentMatch = new Bindable(); } }