Files
jellyfin-jellyfin-1/MediaBrowser.Model/Sync/SyncJobQuery.cs

45 lines
1.5 KiB
C#
Raw Normal View History

2015-03-17 15:52:25 -04:00

2014-07-15 00:12:26 -04:00
namespace MediaBrowser.Model.Sync
{
public class SyncJobQuery
{
2014-07-26 13:30:15 -04:00
/// <summary>
/// Gets or sets the start index.
/// </summary>
/// <value>The start index.</value>
public int? StartIndex { get; set; }
/// <summary>
/// Gets or sets the limit.
/// </summary>
/// <value>The limit.</value>
public int? Limit { get; set; }
2014-12-12 22:56:30 -05:00
/// <summary>
2014-12-17 00:30:31 -05:00
/// Gets or sets the target identifier.
/// </summary>
/// <value>The target identifier.</value>
public string TargetId { get; set; }
2014-12-31 01:24:49 -05:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
2016-08-17 15:28:43 -04:00
public string ExcludeTargetIds { get; set; }
2016-12-28 03:16:21 -05:00
public string ItemId { get; set; }
2015-02-04 06:56:48 -05:00
/// <summary>
/// Gets or sets the status.
/// </summary>
/// <value>The status.</value>
2015-03-17 15:52:25 -04:00
public SyncJobStatus[] Statuses { get; set; }
2015-02-04 06:56:48 -05:00
/// <summary>
/// Gets or sets a value indicating whether [synchronize new content].
/// </summary>
/// <value><c>null</c> if [synchronize new content] contains no value, <c>true</c> if [synchronize new content]; otherwise, <c>false</c>.</value>
public bool? SyncNewContent { get; set; }
public SyncJobQuery()
{
2015-03-17 15:52:25 -04:00
Statuses = new SyncJobStatus[] { };
2015-02-04 06:56:48 -05:00
}
2014-07-15 00:12:26 -04:00
}
}