Files
MPF/MPF.UI.Core/ComboBoxItems/IElement.cs
2022-04-11 10:32:03 -07:00

11 lines
210 B
C#

namespace MPF.UI.Core.ComboBoxItems
{
public interface IElement
{
/// <summary>
/// Display name for the combo box element
/// </summary>
string Name { get; }
}
}