untangle-puzzlegame/Library/PackageCache/com.unity.test-framework@5ac417e07314/UnityEditor.TestRunner/GUI/Controls/ISelectableItem.cs
2025-04-17 17:33:08 -04:00

21 lines
553 B
C#

using System;
namespace UnityEditor.TestTools.TestRunner.GUI.Controls
{
/// <summary>
/// Defines a content element which can be used with the <see cref="GenericItemContentProvider{T}" /> content provider.
/// </summary>
internal interface ISelectableItem<out T>
{
/// <summary>
/// The value represented by this item.
/// </summary>
T Value { get; }
/// <summary>
/// The name to be used when displaying this item.
/// </summary>
string DisplayName { get; }
}
}