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.
54 lines
1.6 KiB
54 lines
1.6 KiB
using MediaBrowser.Model.Updates;
|
|
using System;
|
|
|
|
namespace MediaBrowser.Model.Plugins
|
|
{
|
|
/// <summary>
|
|
/// This is a serializable stub class that is used by the api to provide information about installed plugins.
|
|
/// </summary>
|
|
public class PluginInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the configuration date last modified.
|
|
/// </summary>
|
|
/// <value>The configuration date last modified.</value>
|
|
public DateTime ConfigurationDateLastModified { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the version.
|
|
/// </summary>
|
|
/// <value>The version.</value>
|
|
public string Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the assembly file.
|
|
/// </summary>
|
|
/// <value>The name of the assembly file.</value>
|
|
public string AssemblyFileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the configuration file.
|
|
/// </summary>
|
|
/// <value>The name of the configuration file.</value>
|
|
public string ConfigurationFileName { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the description.
|
|
/// </summary>
|
|
/// <value>The description.</value>
|
|
public string Description { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the unique id.
|
|
/// </summary>
|
|
/// <value>The unique id.</value>
|
|
public string Id { get; set; }
|
|
}
|
|
}
|