fix: add custom event handler if not default

This commit is contained in:
2024-04-15 09:00:39 +02:00
parent 8f4294783b
commit 3f5f9ddb87
3 changed files with 26 additions and 3 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Plugins.Advanced
{
[Flags]
public enum FeatureInsertPosition
{
None = 0,
Default = 1,
Top = 2,
Bottom = 3,
}
}