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