// 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 BindableList Pairings = new BindableList(); public BindableList Groupings = new BindableList(); public BindableList Teams = new BindableList(); // only used for serialisation public List Progressions = new List(); [JsonIgnore] public Bindable CurrentMatch = new Bindable(); } }