diff options
Diffstat (limited to 'Emby.Server.Implementations/Plugins/PlugInManifest.cs')
| -rw-r--r-- | Emby.Server.Implementations/Plugins/PlugInManifest.cs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Emby.Server.Implementations/Plugins/PlugInManifest.cs b/Emby.Server.Implementations/Plugins/PlugInManifest.cs index b874676d8..33762791b 100644 --- a/Emby.Server.Implementations/Plugins/PlugInManifest.cs +++ b/Emby.Server.Implementations/Plugins/PlugInManifest.cs @@ -9,52 +9,52 @@ namespace Emby.Server.Implementations.Plugins { /// <summary> /// Gets or sets the category of the plugin. - /// </summary> + /// </summary> public string Category { get; set; } /// <summary> /// Gets or sets the changelog information. - /// </summary> + /// </summary> public string Changelog { get; set; } /// <summary> /// Gets or sets the description of the plugin. - /// </summary> + /// </summary> public string Description { get; set; } /// <summary> /// Gets or sets the Global Unique Identifier for the plugin. - /// </summary> + /// </summary> public Guid Guid { get; set; } /// <summary> /// Gets or sets the Name of the plugin. - /// </summary> + /// </summary> public string Name { get; set; } /// <summary> /// Gets or sets an overview of the plugin. - /// </summary> + /// </summary> public string Overview { get; set; } /// <summary> /// Gets or sets the owner of the plugin. - /// </summary> + /// </summary> public string Owner { get; set; } /// <summary> /// Gets or sets the compatibility version for the plugin. - /// </summary> + /// </summary> public string TargetAbi { get; set; } /// <summary> /// Gets or sets the timestamp of the plugin. - /// </summary> + /// </summary> public DateTime Timestamp { get; set; } /// <summary> /// Gets or sets the Version number of the plugin. - /// </summary> + /// </summary> public string Version { get; set; } } } |
