// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using System.Collections.Generic; using Newtonsoft.Json; using osu.Framework.Bindables; namespace osu.Game.Tournament.Models { /// /// Holds the complete data required to operate the tournament system. /// [Serializable] public class LadderInfo { public BindableList Matches = new BindableList(); public BindableList Rounds = new BindableList(); public BindableList Teams = new BindableList(); // only used for serialisation public List Progressions = new List(); [JsonIgnore] public Bindable CurrentMatch = new Bindable(); } }