aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-09-13 17:42:40 +0100
committerGitHub <noreply@github.com>2020-09-13 17:42:40 +0100
commitea0eb9a6ffc8a667c9d9d455121d3f48d72fa360 (patch)
tree108ff1d2fbe5b2e7e43bb4d63dfafbbc35fa08ca
parent12fb827405473d9f499848ce2098008fc96d0321 (diff)
Update PlugInManifest.cs
Added comments.
-rw-r--r--Emby.Server.Implementations/Plugins/PlugInManifest.cs34
1 files changed, 31 insertions, 3 deletions
diff --git a/Emby.Server.Implementations/Plugins/PlugInManifest.cs b/Emby.Server.Implementations/Plugins/PlugInManifest.cs
index e334d65e5..fa48d73c5 100644
--- a/Emby.Server.Implementations/Plugins/PlugInManifest.cs
+++ b/Emby.Server.Implementations/Plugins/PlugInManifest.cs
@@ -1,5 +1,3 @@
-#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
-
using System;
namespace Emby.Server.Implementations.Plugins
@@ -9,24 +7,54 @@ namespace Emby.Server.Implementations.Plugins
/// </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; }
-}
+ }
}