mirror of
https://github.com/SabreTools/MPF.git
synced 2026-02-17 21:47:53 +00:00
11 lines
211 B
C#
11 lines
211 B
C#
namespace MPF.Frontend.ComboBoxItems
|
|
{
|
|
public interface IElement
|
|
{
|
|
/// <summary>
|
|
/// Display name for the combo box element
|
|
/// </summary>
|
|
string Name { get; }
|
|
}
|
|
}
|