mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
19 lines
586 B
C#
19 lines
586 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Flow.Launcher.Plugin.PluginsManager.Models
|
|
{
|
|
internal class Plugin
|
|
{
|
|
internal string ID { get; set; }
|
|
internal string Name { get; set; }
|
|
internal string Description { get; set; }
|
|
internal string Author { get; set; }
|
|
internal string Version { get; set; }
|
|
internal string Language { get; set; }
|
|
internal string Website { get; set; }
|
|
internal string UrlDownload { get; set; }
|
|
internal string UrlSourceCode { get; set; }
|
|
}
|
|
}
|