···4namespace osu.Framework.Bindables
5{
6 /// <summary>
7- /// An interface that represents a read-only leased bindable.
8 /// </summary>
9 public interface ILeasedBindable : IBindable
10 {
···15 }
1617 /// <summary>
18- /// An interface that representes a read-only leased bindable.
19 /// </summary>
20 /// <typeparam name="T">The value type of the bindable.</typeparam>
21 public interface ILeasedBindable<T> : ILeasedBindable, IBindable<T>
···4namespace osu.Framework.Bindables
5{
6 /// <summary>
7+ /// An interface that represents a leased bindable.
8 /// </summary>
9 public interface ILeasedBindable : IBindable
10 {
···15 }
1617 /// <summary>
18+ /// An interface that representes a leased bindable.
19 /// </summary>
20 /// <typeparam name="T">The value type of the bindable.</typeparam>
21 public interface ILeasedBindable<T> : ILeasedBindable, IBindable<T>