version bump
This commit is contained in:
18
Pilz.Plugins.Advanced.UI/ControlFeature.cs
Normal file
18
Pilz.Plugins.Advanced.UI/ControlFeature.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace Pilz.Plugins.Advanced.UI;
|
||||
|
||||
public abstract class ControlFeature : PluginFeature
|
||||
{
|
||||
public string? ControlName { get; }
|
||||
|
||||
public ControlFeature(string? controlName, string type, string identifier) : base(type, identifier)
|
||||
{
|
||||
ControlName = controlName;
|
||||
}
|
||||
|
||||
public ControlFeature(string? controlName, string type, string identifier, string? name) : base(type, identifier, name)
|
||||
{
|
||||
ControlName = controlName;
|
||||
}
|
||||
|
||||
public abstract void Execute(Control control, PluginFunctionParameter? parameter);
|
||||
}
|
||||
Reference in New Issue
Block a user