Files
App/OwnChar.App.Desktop/AppApi.cs
2024-06-10 21:13:59 +02:00

12 lines
313 B
C#

using OwnChar.App.Desktop.Api;
using Pilz.Configuration;
namespace OwnChar.App.Desktop;
public sealed class AppApi : IOwnCharApi
{
public static AppApi Instance { get; } = new();
public IMainWindowApi? MainWindow { get; internal set; }
public ISettings Settings { get; internal set; } = null!;
}