12 lines
314 B
C#
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; }
|
|
}
|