rename Pilz.Plugins.Advanced to Pilz.Features
This commit is contained in:
15
Pilz.Features/PluginModuleBase.cs
Normal file
15
Pilz.Features/PluginModuleBase.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace Pilz.Features;
|
||||
|
||||
[EditorBrowsable(EditorBrowsableState.Never)]
|
||||
public abstract class PluginModuleBase : PluginFeature
|
||||
{
|
||||
protected PluginModuleBase(string type, string identifier) : base(type, identifier)
|
||||
{
|
||||
}
|
||||
|
||||
protected PluginModuleBase(string type, string identifier, string? name) : base(type, identifier, name)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user