CurrencyAlertClassic/KamiLib/Interfaces/ITabItem.cs

8 lines
134 B
C#
Raw Permalink Normal View History

2023-10-13 09:38:52 +00:00
namespace KamiLib.Interfaces;
public interface ITabItem
{
string TabName { get; }
bool Enabled { get; }
void Draw();
}