Files
App/OwnChar.App.Desktop/AppApi.cs
2024-05-20 18:50:10 +02:00

18 lines
447 B
C#

using OwnChar.App.Desktop.Api;
using Pilz.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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; }
}
}