Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginManagement/Flow.Launcher.PluginResult.cs

11 lines
266 B
C#
Raw Normal View History

2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.Plugin.PluginManagement
{
2020-04-21 12:16:10 +00:00
public class FlowLauncherPluginResult
{
public string plugin_file;
public string description;
public int liked_count;
public string name;
public string version;
}
}