more methods to load plugins

This commit is contained in:
schedpas
2024-04-17 15:05:32 +02:00
parent e91e016f32
commit efb0636312
5 changed files with 110 additions and 19 deletions

View File

@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
@@ -10,5 +11,6 @@ namespace Pilz.Plugins
{
public T? Plugin { get; internal set; }
public PluginStatus Status { get; internal set; }
public Assembly? Assembly { get; internal set; }
}
}