Files
MPF/MPF.Core/UI/ComboBoxItems/IElement.cs
2023-10-07 01:30:11 -04:00

11 lines
210 B
C#

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