implement sync item removals

This commit is contained in:
Luke Pulverenti
2014-12-30 14:16:01 -05:00
parent 8d10ee581c
commit 5e6354854d
6 changed files with 66 additions and 22 deletions

View File

@@ -1,4 +1,5 @@

using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncJobItemQuery
@@ -27,6 +28,11 @@ namespace MediaBrowser.Model.Sync
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
public SyncJobItemStatus? Status { get; set; }
public List<SyncJobItemStatus> Statuses { get; set; }
public SyncJobItemQuery()
{
Statuses = new List<SyncJobItemStatus>();
}
}
}