Files
Pilz/Pilz.Plugins/PluginRuntimeInfoT.cs
2024-05-16 11:15:52 +02:00

18 lines
460 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
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; }
}
}