// 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 osu.Framework.Bindables; namespace osu.Game.Tournament.Models { /// /// Holds the complete data required to operate the tournament system. /// [Serializable] public class StableInfo { public Bindable StablePath = new Bindable(string.Empty); } }