12 lines
313 B
C#
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!;
|
|
}
|