diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 20:53:18 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-19 20:53:18 -0400 |
| commit | b7a8b92c0011c5411a691d522a414480c4c5e34c (patch) | |
| tree | 3a84dbd4d5cd1c78561a92c2a9283ac9cf687b52 /MediaBrowser.Model/System/SystemInfo.cs | |
| parent | 04468452ea873e83811522180a0423ac72d6f77d (diff) | |
reduce system info refreshing from dashboard
Diffstat (limited to 'MediaBrowser.Model/System/SystemInfo.cs')
| -rw-r--r-- | MediaBrowser.Model/System/SystemInfo.cs | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 959ec44c8..f77856c6e 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -1,4 +1,5 @@ using MediaBrowser.Model.Updates; +using System.Collections.Generic; namespace MediaBrowser.Model.System { @@ -35,7 +36,7 @@ namespace MediaBrowser.Model.System /// Gets or sets the in progress installations. /// </summary> /// <value>The in progress installations.</value> - public InstallationInfo[] InProgressInstallations { get; set; } + public List<InstallationInfo> InProgressInstallations { get; set; } /// <summary> /// Gets or sets the web socket port number. @@ -47,7 +48,7 @@ namespace MediaBrowser.Model.System /// Gets or sets the completed installations. /// </summary> /// <value>The completed installations.</value> - public InstallationInfo[] CompletedInstallations { get; set; } + public List<InstallationInfo> CompletedInstallations { get; set; } /// <summary> /// Gets or sets a value indicating whether [supports native web socket]. @@ -59,7 +60,7 @@ namespace MediaBrowser.Model.System /// Gets or sets plugin assemblies that failed to load. /// </summary> /// <value>The failed assembly loads.</value> - public string[] FailedPluginAssemblies { get; set; } + public List<string> FailedPluginAssemblies { get; set; } /// <summary> /// Gets or sets the id. @@ -84,11 +85,11 @@ namespace MediaBrowser.Model.System /// </summary> public SystemInfo() { - InProgressInstallations = new InstallationInfo[] { }; + InProgressInstallations = new List<InstallationInfo>(); - CompletedInstallations = new InstallationInfo[] { }; + CompletedInstallations = new List<InstallationInfo>(); - FailedPluginAssemblies = new string[] { }; + FailedPluginAssemblies = new List<string>(); } } } |
