We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f3ef6b commit c6e6e1eCopy full SHA for c6e6e1e
1 file changed
src/PluginMetadata.cs
@@ -112,6 +112,16 @@ public required string CompanyName
112
/// </summary>
113
public string Type => $"{CompanyName}.{Category.ToString()}.{Name}";
114
115
+ /// <summary>
116
+ /// The minimum version of the FlowSynx engine this plugin is compatible with.
117
+ /// </summary>
118
+ public Version? MinimumFlowSynxVersion { get; set; }
119
+
120
121
+ /// The maximum version of the FlowSynx engine this plugin is compatible with.
122
123
+ public Version? MaximumFlowSynxVersion { get; set; }
124
125
/// <summary>
126
/// Validates that an identifier is non-empty, starts with a letter,
127
/// and contains only letters and digits.
0 commit comments