aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-17 15:52:25 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-03-17 15:52:25 -0400
commitf251fd5abf9de16cdd427145ceeb4c2284c4a432 (patch)
tree899e7f6c2d5d7951f8636b2bf4be1a614344d264 /MediaBrowser.Model/Sync/SyncJobQuery.cs
parent3e8576edd2e06cf12ff99ac681c5f30c96242afc (diff)
update SocketHttpListener
Diffstat (limited to 'MediaBrowser.Model/Sync/SyncJobQuery.cs')
-rw-r--r--MediaBrowser.Model/Sync/SyncJobQuery.cs7
1 files changed, 3 insertions, 4 deletions
diff --git a/MediaBrowser.Model/Sync/SyncJobQuery.cs b/MediaBrowser.Model/Sync/SyncJobQuery.cs
index 233dc7878..e86ec929f 100644
--- a/MediaBrowser.Model/Sync/SyncJobQuery.cs
+++ b/MediaBrowser.Model/Sync/SyncJobQuery.cs
@@ -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[] { };
}
}
}