diff options
| author | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
|---|---|---|
| committer | LukePulverenti <luke.pulverenti@gmail.com> | 2013-02-20 20:33:05 -0500 |
| commit | 767cdc1f6f6a63ce997fc9476911e2c361f9d402 (patch) | |
| tree | 49add55976f895441167c66cfa95e5c7688d18ce /MediaBrowser.Model/System | |
| parent | 845554722efaed872948a9e0f7202e3ef52f1b6e (diff) | |
Pushing missing changes
Diffstat (limited to 'MediaBrowser.Model/System')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs new file mode 100644 index 000000000..7ae92294b --- /dev/null +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -0,0 +1,67 @@ +using MediaBrowser.Model.Updates; +using ProtoBuf; + +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> + public string[] FailedPluginAssemblies { get; set; } + } +} |
