aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Plugins/PluginInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Plugins/PluginInfo.cs')
-rw-r--r--MediaBrowser.Model/Plugins/PluginInfo.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/MediaBrowser.Model/Plugins/PluginInfo.cs b/MediaBrowser.Model/Plugins/PluginInfo.cs
index fd4cfa78c..fbc2e2927 100644
--- a/MediaBrowser.Model/Plugins/PluginInfo.cs
+++ b/MediaBrowser.Model/Plugins/PluginInfo.cs
@@ -1,5 +1,4 @@
using MediaBrowser.Model.Updates;
-using ProtoBuf;
using System;
namespace MediaBrowser.Model.Plugins
@@ -7,56 +6,48 @@ namespace MediaBrowser.Model.Plugins
/// <summary>
/// This is a serializable stub class that is used by the api to provide information about installed plugins.
/// </summary>
- [ProtoContract]
public class PluginInfo
{
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
- [ProtoMember(1)]
public string Name { get; set; }
/// <summary>
/// Gets or sets the configuration date last modified.
/// </summary>
/// <value>The configuration date last modified.</value>
- [ProtoMember(3)]
public DateTime ConfigurationDateLastModified { get; set; }
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
- [ProtoMember(4)]
public string Version { get; set; }
/// <summary>
/// Gets or sets the name of the assembly file.
/// </summary>
/// <value>The name of the assembly file.</value>
- [ProtoMember(5)]
public string AssemblyFileName { get; set; }
/// <summary>
/// Gets or sets the name of the configuration file.
/// </summary>
/// <value>The name of the configuration file.</value>
- [ProtoMember(6)]
public string ConfigurationFileName { get; set; }
/// <summary>
/// Gets or sets the description.
/// </summary>
/// <value>The description.</value>
- [ProtoMember(7)]
public string Description { get; set; }
/// <summary>
/// Gets or sets the unique id.
/// </summary>
/// <value>The unique id.</value>
- [ProtoMember(9)]
public string Id { get; set; }
/// <summary>
@@ -64,7 +55,6 @@ namespace MediaBrowser.Model.Plugins
/// compatible new version is released
/// </summary>
/// <value><c>true</c> if [enable auto update]; otherwise, <c>false</c>.</value>
- [ProtoMember(10)]
public bool EnableAutoUpdate { get; set; }
/// <summary>
@@ -72,14 +62,12 @@ namespace MediaBrowser.Model.Plugins
/// Options are: Dev, Beta or Release
/// </summary>
/// <value>The update class.</value>
- [ProtoMember(11)]
public PackageVersionClass UpdateClass { get; set; }
/// <summary>
/// Gets or sets the minimum required UI version.
/// </summary>
/// <value>The minimum required UI version.</value>
- [ProtoMember(12)]
public string MinimumRequiredUIVersion { get; set; }
}
}