Files
App/OwnChar.App.Desktop/Api/IMainWindowApi.cs
2024-06-30 18:18:59 +02:00

17 lines
375 B
C#

using OwnChar.Api;
using OwnChar.Manager;
using System.Windows.Forms;
namespace OwnChar.App.Desktop.Api;
public interface IMainWindowApi
{
Form Window { get; }
IOwnCharManager? Manager { get; }
void OpenTab(Control content, string title);
void CloseTab(Control content);
bool IsTabOpen(Control content);
bool IsTabOpen<T>();
void Logout();
}