method for inserting a plugin features collection to an telerik items collection

This commit is contained in:
2024-01-23 10:50:48 +01:00
parent cc84215d73
commit 5b435f1cad
4 changed files with 113 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Pilz.Plugins.Advanced
{
public enum FeaturePrioritization
{
Low = -1,
Default = 0,
High = 1,
}
}