15 lines
384 B
C#
15 lines
384 B
C#
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)
|
|
{
|
|
}
|
|
} |