11 lines
197 B
C#
11 lines
197 B
C#
using System.Windows.Forms;
|
|
|
|
namespace OwnChar.App.Desktop.Api
|
|
{
|
|
public interface IMainWindowApi
|
|
{
|
|
void OpenTab(Control content);
|
|
void CloseTab(Control content);
|
|
}
|
|
}
|