code cleanup
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
using OwnChar.Manager;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace OwnChar.App.Desktop.Api
|
||||
namespace OwnChar.App.Desktop.Api;
|
||||
|
||||
public interface IMainWindowApi
|
||||
{
|
||||
public interface IMainWindowApi
|
||||
{
|
||||
Form Window { get; }
|
||||
OwnCharManager? Manager { get; }
|
||||
void OpenTab(Control content, string title);
|
||||
void CloseTab(Control content);
|
||||
bool IsTabOpen(Control content);
|
||||
bool IsTabOpen<T>();
|
||||
}
|
||||
Form Window { get; }
|
||||
OwnCharManager? Manager { get; }
|
||||
void OpenTab(Control content, string title);
|
||||
void CloseTab(Control content);
|
||||
bool IsTabOpen(Control content);
|
||||
bool IsTabOpen<T>();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user