2015-03-17 19:52:25 +00:00
|
|
|
|
|
2014-07-15 04:12:26 +00:00
|
|
|
|
namespace MediaBrowser.Model.Sync
|
|
|
|
|
{
|
|
|
|
|
public class SyncJobQuery
|
|
|
|
|
{
|
2014-07-26 17:30:15 +00: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-13 03:56:30 +00:00
|
|
|
|
/// <summary>
|
2014-12-17 05:30:31 +00:00
|
|
|
|
/// Gets or sets the target identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The target identifier.</value>
|
|
|
|
|
public string TargetId { get; set; }
|
2014-12-31 06:24:49 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user identifier.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user identifier.</value>
|
|
|
|
|
public string UserId { get; set; }
|
2015-02-04 11:56:48 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The status.</value>
|
2015-03-17 19:52:25 +00:00
|
|
|
|
public SyncJobStatus[] Statuses { get; set; }
|
2015-02-04 11:56:48 +00: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 19:52:25 +00:00
|
|
|
|
Statuses = new SyncJobStatus[] { };
|
2015-02-04 11:56:48 +00:00
|
|
|
|
}
|
2014-07-15 04:12:26 +00:00
|
|
|
|
}
|
|
|
|
|
}
|