mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-27 15:36:18 +00:00
8 lines
94 B
C#
8 lines
94 B
C#
|
namespace TUI.Pages;
|
||
|
|
||
|
interface IPage
|
||
|
{
|
||
|
void Open();
|
||
|
void Render();
|
||
|
void Bind();
|
||
|
}
|