mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-04 04:16:19 +00:00
9 lines
114 B
C#
9 lines
114 B
C#
namespace TUI.Pages;
|
|
|
|
interface IPage
|
|
{
|
|
void Open();
|
|
void Initial();
|
|
void Render();
|
|
void Bind();
|
|
} |