16 lines
342 B
C#
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; }
|
|
}
|
|
}
|