From 1ad990ad720931309afadd9f7912d66595dcc04e Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 19 Aug 2017 15:43:35 -0400 Subject: update live tv data transfer --- MediaBrowser.Model/System/SystemInfo.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'MediaBrowser.Model/System') diff --git a/MediaBrowser.Model/System/SystemInfo.cs b/MediaBrowser.Model/System/SystemInfo.cs index 4154093cba..fce9dea4f1 100644 --- a/MediaBrowser.Model/System/SystemInfo.cs +++ b/MediaBrowser.Model/System/SystemInfo.cs @@ -46,7 +46,7 @@ namespace MediaBrowser.Model.System /// Gets or sets the in progress installations. /// /// The in progress installations. - public List InProgressInstallations { get; set; } + public InstallationInfo[] InProgressInstallations { get; set; } /// /// Gets or sets the web socket port number. @@ -58,7 +58,7 @@ namespace MediaBrowser.Model.System /// Gets or sets the completed installations. /// /// The completed installations. - public List CompletedInstallations { get; set; } + public InstallationInfo[] CompletedInstallations { get; set; } /// /// Gets or sets a value indicating whether this instance can self restart. @@ -76,7 +76,7 @@ namespace MediaBrowser.Model.System /// Gets or sets plugin assemblies that failed to load. /// /// The failed assembly loads. - public List FailedPluginAssemblies { get; set; } + public string[] FailedPluginAssemblies { get; set; } /// /// Gets or sets the program data path. @@ -153,11 +153,11 @@ namespace MediaBrowser.Model.System /// public SystemInfo() { - InProgressInstallations = new List(); + InProgressInstallations = new InstallationInfo[] { }; - CompletedInstallations = new List(); + CompletedInstallations = new InstallationInfo[] { }; - FailedPluginAssemblies = new List(); + FailedPluginAssemblies = new string[] { }; } } } -- cgit v1.2.3