Files
MPF/MPF.Frontend/ComboBoxItems/IElement.cs
2026-01-25 18:09:00 -05:00

11 lines
218 B
C#

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