Files
Pilz/Pilz.Plugins/PluginRuntimeInfoT.cs
2024-06-05 19:15:32 +02:00

12 lines
314 B
C#

using System.Reflection;
namespace Pilz.Plugins;
public class PluginRuntimeInfo<T> where T : class
{
public T? Plugin { get; internal set; }
public PluginStatus Status { get; internal set; }
public Assembly? Assembly { get; internal set; }
public Exception? Exception { get; internal set; }
}