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

9 lines
114 B
C#
Raw Normal View History

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