Update PlugInManifest.cs

Added comments.
This commit is contained in:
BaronGreenback 2020-09-13 17:42:40 +01:00 committed by GitHub
parent 12fb827405
commit ea0eb9a6ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,3 @@
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
using System; using System;
namespace Emby.Server.Implementations.Plugins namespace Emby.Server.Implementations.Plugins
@ -9,24 +7,54 @@ namespace Emby.Server.Implementations.Plugins
/// </summary> /// </summary>
public class PlugInManifest public class PlugInManifest
{ {
/// <summary>
/// Gets or sets the category of the plugin.
/// </summary>
public string Category { get; set; } public string Category { get; set; }
/// <summary>
/// Gets or sets the changelog information.
/// </summary>
public string Changelog { get; set; } public string Changelog { get; set; }
/// <summary>
/// Gets or sets the description of the plugin.
/// </summary>
public string Description { get; set; } public string Description { get; set; }
/// <summary>
/// Gets or sets the Global Unique Identifier for the plugin.
/// </summary>
public Guid Guid { get; set; } public Guid Guid { get; set; }
/// <summary>
/// Gets or sets the Name of the plugin.
/// </summary>
public string Name { get; set; } public string Name { get; set; }
/// <summary>
/// Gets or sets an overview of the plugin.
/// </summary>
public string Overview { get; set; } public string Overview { get; set; }
/// <summary>
/// Gets or sets the owner of the plugin.
/// </summary>
public string Owner { get; set; } public string Owner { get; set; }
/// <summary>
/// Gets or sets the compatibility version for the plugin.
/// </summary>
public string TargetAbi { get; set; } public string TargetAbi { get; set; }
/// <summary>
/// Gets or sets the timestamp of the plugin.
/// </summary>
public DateTime Timestamp { get; set; } public DateTime Timestamp { get; set; }
/// <summary>
/// Gets or sets the Version number of the plugin.
/// </summary>
public string Version { get; set; } public string Version { get; set; }
} }
} }