separate plugin ui & make Pilz.Plugins.Advanced package platform independent
This commit is contained in:
16
Pilz.Plugins.Advanced/PluginModuleBase.cs
Normal file
16
Pilz.Plugins.Advanced/PluginModuleBase.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user