teamlead-dashboard/src/TUI/Pages/IPage.cs

8 lines
94 B
C#
Raw Normal View History

2024-04-16 12:58:51 +00:00
namespace TUI.Pages;
interface IPage
{
void Open();
void Render();
void Bind();
}