mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 03:30:06 +00:00
implement sync item removals
This commit is contained in:
parent
8d10ee581c
commit
5e6354854d
6 changed files with 66 additions and 22 deletions
|
|
@ -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>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue