Projektdateien hinzufügen.

This commit is contained in:
2024-05-16 10:30:15 +02:00
parent 736c31a7bb
commit fe03628377
5 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using Pilz.Plugins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OwnChar.Plugins
{
public interface IOwnCharPlugin : IPlugin
{
public string ID { get; }
public object? GetApi();
}
}