You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
61 lines
1.6 KiB
4 years ago
|
using System;
|
||
|
|
||
|
namespace Emby.Server.Implementations.Plugins
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Defines a Plugin manifest file.
|
||
|
/// </summary>
|
||
4 years ago
|
public class PluginManifest
|
||
4 years ago
|
{
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the category of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Category { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the changelog information.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Changelog { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the description of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Description { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the Global Unique Identifier for the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public Guid Guid { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the Name of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Name { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets an overview of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Overview { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the owner of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Owner { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the compatibility version for the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string TargetAbi { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the timestamp of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public DateTime Timestamp { get; set; }
|
||
|
|
||
4 years ago
|
/// <summary>
|
||
|
/// Gets or sets the Version number of the plugin.
|
||
4 years ago
|
/// </summary>
|
||
4 years ago
|
public string Version { get; set; }
|
||
4 years ago
|
}
|
||
4 years ago
|
}
|