aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Sync/SyncJobQuery.cs
diff options
context:
space:
mode:
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[] { };
}
}
}