aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Plugins
diff options
context:
space:
mode:
authorJim Cartlidge <jimcartlidge@yahoo.co.uk>2020-09-13 16:30:04 +0100
committerJim Cartlidge <jimcartlidge@yahoo.co.uk>2020-09-13 16:30:04 +0100
commit81f655803d50ce75c270d06d409d1f1c190a6d79 (patch)
tree0b0d9c8d7a410681f023e3c1bac88d52eb2ab745 /Emby.Server.Implementations/Plugins
parent60e8f47194d0bc7053e5771cd355b1ef628f99a2 (diff)
Modified to work with manifests.
Diffstat (limited to 'Emby.Server.Implementations/Plugins')
-rw-r--r--Emby.Server.Implementations/Plugins/PlugInManifest.cs32
1 files changed, 32 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Plugins/PlugInManifest.cs b/Emby.Server.Implementations/Plugins/PlugInManifest.cs
new file mode 100644
index 0000000000..e334d65e50
--- /dev/null
+++ b/Emby.Server.Implementations/Plugins/PlugInManifest.cs
@@ -0,0 +1,32 @@
+#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
+
+using System;
+
+namespace Emby.Server.Implementations.Plugins
+{
+ /// <summary>
+ /// Defines a Plugin manifest file.
+ /// </summary>
+ public class PlugInManifest
+ {
+ public string Category { get; set; }
+
+ public string Changelog { get; set; }
+
+ public string Description { get; set; }
+
+ public Guid Guid { get; set; }
+
+ public string Name { get; set; }
+
+ public string Overview { get; set; }
+
+ public string Owner { get; set; }
+
+ public string TargetAbi { get; set; }
+
+ public DateTime Timestamp { get; set; }
+
+ public string Version { get; set; }
+}
+}