Flow.Launcher/Plugins/Flow.Launcher.Plugin.PluginsManager/Models/UserPlugin.cs
2020-12-17 20:37:01 +11:00

16 lines
503 B
C#

namespace Flow.Launcher.Plugin.PluginsManager.Models
{
public class UserPlugin
{
public string ID { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string Author { get; set; }
public string Version { get; set; }
public string Language { get; set; }
public string Website { get; set; }
public string UrlDownload { get; set; }
public string UrlSourceCode { get; set; }
}
}