11 lines
208 B
C#
11 lines
208 B
C#
namespace Pilz.Plugins;
|
|
|
|
public class PluginRuntimeInfo<T> : PluginRuntimeInfo where T : class
|
|
{
|
|
public new T? Plugin
|
|
{
|
|
get => base.Plugin as T;
|
|
set => base.Plugin = value;
|
|
}
|
|
}
|