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