10 lines
204 B
C#
10 lines
204 B
C#
using Pilz.Configuration;
|
|
|
|
namespace OwnChar.App.Desktop.Api;
|
|
|
|
public interface IOwnCharApi
|
|
{
|
|
public abstract IMainWindowApi? MainWindow { get; }
|
|
public abstract ISettings? Settings { get; }
|
|
}
|