Files
Pilz/Pilz.Features/IPluginFeatureProvider.cs
2025-11-06 11:51:05 +01:00

13 lines
363 B
C#

namespace Pilz.Features;
public interface IPluginFeatureProvider
{
static abstract PluginFeature Instance { get; }
}
public interface IPluginFeatureProvider<T> : IPluginFeatureProvider where T : PluginFeature, IPluginFeatureProvider<T>
{
static new abstract T Instance { get; }
static PluginFeature IPluginFeatureProvider.Instance => Instance;
}