code cleanup

This commit is contained in:
2024-06-11 06:59:45 +02:00
parent 5192dc38b2
commit 6e323fad3a
3 changed files with 11 additions and 26 deletions

View File

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