CurrencyAlertClassic/KamiLib/Interfaces/ITabItem.cs

8 lines
134 B
C#

namespace KamiLib.Interfaces;
public interface ITabItem
{
string TabName { get; }
bool Enabled { get; }
void Draw();
}