Files
MPF/MPF.Frontend/ComboBoxItems/IElement.cs
2024-05-23 15:40:12 -04:00

11 lines
211 B
C#

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