using System;
namespace Emby.Server.Implementations.Plugins
{
///
/// Defines a Plugin manifest file.
///
public class PluginManifest
{
///
/// Gets or sets the category of the plugin.
///
public string Category { get; set; }
///
/// Gets or sets the changelog information.
///
public string Changelog { get; set; }
///
/// Gets or sets the description of the plugin.
///
public string Description { get; set; }
///
/// Gets or sets the Global Unique Identifier for the plugin.
///
public Guid Guid { get; set; }
///
/// Gets or sets the Name of the plugin.
///
public string Name { get; set; }
///
/// Gets or sets an overview of the plugin.
///
public string Overview { get; set; }
///
/// Gets or sets the owner of the plugin.
///
public string Owner { get; set; }
///
/// Gets or sets the compatibility version for the plugin.
///
public string TargetAbi { get; set; }
///
/// Gets or sets the timestamp of the plugin.
///
public DateTime Timestamp { get; set; }
///
/// Gets or sets the Version number of the plugin.
///
public string Version { get; set; }
}
}