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