mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-13 05:35:26 +00:00
11 lines
210 B
C#
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; }
|
|
}
|
|
}
|