update SocketHttpListener

This commit is contained in:
Luke Pulverenti
2015-03-17 15:52:25 -04:00
parent 3e8576edd2
commit f251fd5abf
9 changed files with 19 additions and 21 deletions

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncJobQuery
@@ -28,7 +27,7 @@ namespace MediaBrowser.Model.Sync
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public List<SyncJobStatus> Statuses { get; set; }
public SyncJobStatus[] Statuses { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [synchronize new content].
/// </summary>
@@ -37,7 +36,7 @@ namespace MediaBrowser.Model.Sync
public SyncJobQuery()
{
Statuses = new List<SyncJobStatus>();
Statuses = new SyncJobStatus[] { };
}
}
}