18 lines
447 B
C#
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; }
|
|
}
|
|
}
|