We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a460aef commit 9ae9d69Copy full SHA for 9ae9d69
Plugins/Flow.Launcher.Plugin.PluginManager/Plugins.cs
@@ -6,8 +6,14 @@ namespace Flow.Launcher.Plugin.PluginsManager
6
{
7
internal class Plugin
8
9
- public string Name { get; set; }
10
- public string Url { get; set; }
11
- public string Version { get; set; }
+ internal string ID { get; set; }
+ internal string Name { get; set; }
+ internal string Description { get; set; }
12
+ internal string Author { get; set; }
13
+ internal string Version { get; set; }
14
+ internal string Language { get; set; }
15
+ internal string Website { get; set; }
16
+ internal string UrlDownload { get; set; }
17
+ internal string UrlSourceCode { get; set; }
18
}
19
0 commit comments