add description property for plugin feature

This commit is contained in:
Pilzinsel64
2025-04-01 06:42:28 +02:00
parent 17212da67a
commit 361f55198d

View File

@@ -31,6 +31,10 @@ public abstract class PluginFeature
/// </summary>
public virtual string? Name { get; init; }
/// <summary>
/// The (display) description of the feature.
/// </summary>
public virtual string? Description { get; init; }
/// <summary>
/// The symbol for the feature.
/// </summary>
public virtual object? Icon { get; set; }