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

16 lines
342 B
C#

using Pilz.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OwnChar.App.Desktop.Api
{
public interface IOwnCharApi
{
public abstract IMainWindowApi? MainWindow { get; }
public abstract ISettings? Settings { get; }
}
}