Files
App/OwnChar.App.Desktop/UI/Windows/MainWindowApi.cs
2024-05-17 20:43:16 +02:00

24 lines
530 B
C#

using OwnChar.App.Desktop.Api;
using System;
using System.Windows.Forms;
namespace OwnChar.App.Desktop.UI.Windows;
public partial class MainWindow
{
public class MainWindowApi(MainWindow mainWindow) : IMainWindowApi
{
public MainWindow MainWindow { get; } = mainWindow;
public void CloseTab(Control content)
{
throw new NotImplementedException();
}
public void OpenTab(Control content)
{
throw new NotImplementedException();
}
}
}