Files
Pilz/Pilz.Plugins.Advanced/PluginModuleBase.cs
2024-06-05 19:15:32 +02:00

15 lines
451 B
C#

using System.ComponentModel;
namespace Pilz.Plugins.Advanced;
[EditorBrowsable(EditorBrowsableState.Never)]
public abstract class PluginModuleBase : PluginFeature
{
protected PluginModuleBase(string moduleType, string moduleIdentifier) : base(moduleType, moduleIdentifier)
{
}
protected PluginModuleBase(string moduleType, string moduleIdentifier, string moduleName) : base(moduleType, moduleIdentifier, moduleName)
{
}
}