diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-09-16 17:22:58 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-16 17:22:58 -0400 |
| commit | bc5404cd6f6cf1fcc90d014881cd52e2b4f80ebc (patch) | |
| tree | cd428916406362e56881130b29023f74e347218e /Emby.Server.Implementations/Plugins/PluginManifest.cs | |
| parent | 6dd6961fd4649bd14501dbe5a5cd1b6a0e1fe586 (diff) | |
| parent | ad00b93be54115674750b1b89421f9e5ea1807cb (diff) | |
Merge pull request #3401 from BaronGreenback/Plugins
Fix for windows plug-in upgrades issue: #1623
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PluginManifest.cs')
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PluginManifest.cs | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Plugins/PluginManifest.cs b/Emby.Server.Implementations/Plugins/PluginManifest.cs new file mode 100644 index 000000000..33762791b --- /dev/null +++ b/Emby.Server.Implementations/Plugins/PluginManifest.cs @@ -0,0 +1,60 @@ +using System; + +namespace Emby.Server.Implementations.Plugins +{ + /// <summary> + /// Defines a Plugin manifest file. + /// </summary> + public class PluginManifest + { + /// <summary> + /// Gets or sets the category of the plugin. + /// </summary> + public string Category { get; set; } + + /// <summary> + /// Gets or sets the changelog information. + /// </summary> + public string Changelog { get; set; } + + /// <summary> + /// Gets or sets the description of the plugin. + /// </summary> + public string Description { get; set; } + + /// <summary> + /// Gets or sets the Global Unique Identifier for the plugin. + /// </summary> + public Guid Guid { get; set; } + + /// <summary> + /// Gets or sets the Name of the plugin. + /// </summary> + public string Name { get; set; } + + /// <summary> + /// Gets or sets an overview of the plugin. + /// </summary> + public string Overview { get; set; } + + /// <summary> + /// Gets or sets the owner of the plugin. + /// </summary> + public string Owner { get; set; } + + /// <summary> + /// Gets or sets the compatibility version for the plugin. + /// </summary> + public string TargetAbi { get; set; } + + /// <summary> + /// Gets or sets the timestamp of the plugin. + /// </summary> + public DateTime Timestamp { get; set; } + + /// <summary> + /// Gets or sets the Version number of the plugin. + /// </summary> + public string Version { get; set; } + } +} |
