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; } /// /// Whether or not this plug-in should be automatically updated when a /// compatible new version is released /// /// true if [enable auto update]; otherwise, false. public bool EnableAutoUpdate { get; set; } /// /// The classification of updates to which to subscribe. /// Options are: Dev, Beta or Release /// /// The update class. public PackageVersionClass UpdateClass { get; set; } /// /// Gets or sets the minimum required UI version. /// /// The minimum required UI version. public string MinimumRequiredUIVersion { get; set; } } }