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

@@ -32,6 +32,12 @@ namespace Pilz.Plugins.Advanced
/// </summary>
public virtual RadSvgImage? Icon { get; set; }
/// <summary>
/// Sets the prioritization of the feature.
/// This will be respected on abfragen features and on inserting as items using the extension methods"/>.
/// Some applications might implement a way to regonize feature prioritization via its own way.
/// </summary>
public virtual FeaturePrioritization Prioritization { get; set; }
/// <summary>
/// Defines if the feature is enabled/visible.
/// </summary>
public virtual bool Enabled { get; set; } = true;