From 32bc545a854480f11bbb7dbaa4f5205f11acc7d6 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 18 Apr 2013 15:57:28 -0400 Subject: removed unused attributes --- MediaBrowser.Model/System/SystemInfo.cs | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'MediaBrowser.Model/System') 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 { /// /// Class SystemInfo /// - [ProtoContract] public class SystemInfo { /// /// Gets or sets the version. /// /// The version. - [ProtoMember(1)] public string Version { get; set; } /// /// Gets or sets a value indicating whether this instance has pending restart. /// /// true if this instance has pending restart; otherwise, false. - [ProtoMember(2)] public bool HasPendingRestart { get; set; } /// /// Gets or sets a value indicating whether this instance is network deployed. /// /// true if this instance is network deployed; otherwise, false. - [ProtoMember(3)] public bool IsNetworkDeployed { get; set; } /// /// Gets or sets the in progress installations. /// /// The in progress installations. - [ProtoMember(4)] public InstallationInfo[] InProgressInstallations { get; set; } /// /// Gets or sets the web socket port number. /// /// The web socket port number. - [ProtoMember(5)] public int WebSocketPortNumber { get; set; } /// /// Gets or sets the completed installations. /// /// The completed installations. - [ProtoMember(6)] public InstallationInfo[] CompletedInstallations { get; set; } /// /// Gets or sets a value indicating whether [supports native web socket]. /// /// true if [supports native web socket]; otherwise, false. - [ProtoMember(7)] public bool SupportsNativeWebSocket { get; set; } /// /// Gets or sets plugin assemblies that failed to load. /// /// The failed assembly loads. - [ProtoMember(8)] public string[] FailedPluginAssemblies { get; set; } /// /// Gets or sets the id. /// /// The id. - [ProtoMember(9)] public string Id { get; set; } } } -- cgit v1.2.3