CurrencyAlertClassic/KamiLib/Interfaces/ISelectable.cs

8 lines
143 B
C#
Raw Normal View History

2023-10-13 09:38:52 +00:00
namespace KamiLib.Interfaces;
public interface ISelectable
{
IDrawable Contents { get; }
void DrawLabel();
string ID { get; }
}