aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/System/SystemInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-18 15:57:28 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-18 15:57:28 -0400
commit32bc545a854480f11bbb7dbaa4f5205f11acc7d6 (patch)
treeb792b6c932a6f77cec1535267e1096251bc8ab95 /MediaBrowser.Model/System/SystemInfo.cs
parent48d60b2f6ad2cf88bd5336025446b005d24fe4ee (diff)
removed unused attributes
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
-rw-r--r--MediaBrowser.Model/System/SystemInfo.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs
index afe074088..6e2f26775 100644
--- a/MediaBrowser.Model/System/SystemInfo.cs
+++ b/MediaBrowser.Model/System/SystemInfo.cs
@@ -1,76 +1,64 @@
using MediaBrowser.Model.Updates;
-using ProtoBuf;
-using System;
namespace MediaBrowser.Model.System
{
/// <summary>
/// Class SystemInfo
/// </summary>
- [ProtoContract]
public class SystemInfo
{
/// <summary>
/// Gets or sets the version.
/// </summary>
/// <value>The version.</value>
- [ProtoMember(1)]
public string Version { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance has pending restart.
/// </summary>
/// <value><c>true</c> if this instance has pending restart; otherwise, <c>false</c>.</value>
- [ProtoMember(2)]
public bool HasPendingRestart { get; set; }
/// <summary>
/// Gets or sets a value indicating whether this instance is network deployed.
/// </summary>
/// <value><c>true</c> if this instance is network deployed; otherwise, <c>false</c>.</value>
- [ProtoMember(3)]
public bool IsNetworkDeployed { get; set; }
/// <summary>
/// Gets or sets the in progress installations.
/// </summary>
/// <value>The in progress installations.</value>
- [ProtoMember(4)]
public InstallationInfo[] InProgressInstallations { get; set; }
/// <summary>
/// Gets or sets the web socket port number.
/// </summary>
/// <value>The web socket port number.</value>
- [ProtoMember(5)]
public int WebSocketPortNumber { get; set; }
/// <summary>
/// Gets or sets the completed installations.
/// </summary>
/// <value>The completed installations.</value>
- [ProtoMember(6)]
public InstallationInfo[] CompletedInstallations { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [supports native web socket].
/// </summary>
/// <value><c>true</c> if [supports native web socket]; otherwise, <c>false</c>.</value>
- [ProtoMember(7)]
public bool SupportsNativeWebSocket { get; set; }
/// <summary>
/// Gets or sets plugin assemblies that failed to load.
/// </summary>
/// <value>The failed assembly loads.</value>
- [ProtoMember(8)]
public string[] FailedPluginAssemblies { get; set; }
/// <summary>
/// Gets or sets the id.
/// </summary>
/// <value>The id.</value>
- [ProtoMember(9)]
public string Id { get; set; }
}
}