From 6c3209e3f95cc537cc97984ba5a4d5eee0373424 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Wed, 4 Feb 2015 06:56:48 -0500 Subject: dlna fixes --- MediaBrowser.Model/Sync/SyncJobQuery.cs | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) (limited to 'MediaBrowser.Model/Sync/SyncJobQuery.cs') diff --git a/MediaBrowser.Model/Sync/SyncJobQuery.cs b/MediaBrowser.Model/Sync/SyncJobQuery.cs index 35f0e076d..233dc7878 100644 --- a/MediaBrowser.Model/Sync/SyncJobQuery.cs +++ b/MediaBrowser.Model/Sync/SyncJobQuery.cs @@ -1,4 +1,5 @@ - +using System.Collections.Generic; + namespace MediaBrowser.Model.Sync { public class SyncJobQuery @@ -14,11 +15,6 @@ namespace MediaBrowser.Model.Sync /// The limit. public int? Limit { get; set; } /// - /// Gets or sets a value indicating whether this instance is completed. - /// - /// null if [is completed] contains no value, true if [is completed]; otherwise, false. - public bool? IsCompleted { get; set; } - /// /// Gets or sets the target identifier. /// /// The target identifier. @@ -28,5 +24,20 @@ namespace MediaBrowser.Model.Sync /// /// The user identifier. public string UserId { get; set; } + /// + /// Gets or sets the status. + /// + /// The status. + public List Statuses { get; set; } + /// + /// Gets or sets a value indicating whether [synchronize new content]. + /// + /// null if [synchronize new content] contains no value, true if [synchronize new content]; otherwise, false. + public bool? SyncNewContent { get; set; } + + public SyncJobQuery() + { + Statuses = new List(); + } } } -- cgit v1.2.3