12 lines
300 B
C#
12 lines
300 B
C#
using System.Reflection;
|
|
|
|
namespace Pilz.Plugins;
|
|
|
|
public class PluginRuntimeInfo
|
|
{
|
|
public object? Plugin { get; internal set; }
|
|
public PluginStatus Status { get; internal set; }
|
|
public Assembly? Assembly { get; internal set; }
|
|
public Exception? Exception { get; internal set; }
|
|
}
|