jellyfin/MediaBrowser.Model/Sync/SyncJobRequest.cs

75 lines
2.4 KiB
C#
Raw Normal View History

2014-07-15 06:12:26 +02:00
using System.Collections.Generic;
namespace MediaBrowser.Model.Sync
{
public class SyncJobRequest
{
/// <summary>
2014-07-26 19:30:15 +02:00
/// Gets or sets the target identifier.
2014-07-15 06:12:26 +02:00
/// </summary>
2014-07-26 19:30:15 +02:00
/// <value>The target identifier.</value>
public string TargetId { get; set; }
2014-07-15 06:12:26 +02:00
/// <summary>
2014-07-22 18:36:34 +02:00
/// Gets or sets the item ids.
2014-07-15 06:12:26 +02:00
/// </summary>
2014-07-22 18:36:34 +02:00
/// <value>The item ids.</value>
public List<string> ItemIds { get; set; }
2014-07-15 06:12:26 +02:00
/// <summary>
2014-12-16 06:01:57 +01:00
/// Gets or sets the category.
/// </summary>
/// <value>The category.</value>
public SyncCategory? Category { get; set; }
/// <summary>
/// Gets or sets the parent identifier.
/// </summary>
/// <value>The parent identifier.</value>
public string ParentId { get; set; }
/// <summary>
2014-07-15 06:12:26 +02:00
/// Gets or sets the quality.
/// </summary>
/// <value>The quality.</value>
2015-03-04 18:22:55 +01:00
public string Quality { get; set; }
2014-07-22 18:36:34 +02:00
/// <summary>
2015-03-15 05:17:35 +01:00
/// Gets or sets the profile.
/// </summary>
/// <value>The profile.</value>
public string Profile { get; set; }
/// <summary>
2014-07-22 18:36:34 +02:00
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2014-07-26 19:30:15 +02:00
/// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>
public string UserId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [unwatched only].
/// </summary>
/// <value><c>true</c> if [unwatched only]; otherwise, <c>false</c>.</value>
public bool UnwatchedOnly { get; set; }
/// <summary>
2014-12-11 07:20:28 +01:00
/// Gets or sets a value indicating whether [synchronize new content].
/// </summary>
/// <value><c>true</c> if [synchronize new content]; otherwise, <c>false</c>.</value>
public bool SyncNewContent { get; set; }
2014-07-26 19:30:15 +02:00
/// <summary>
2014-12-11 07:20:28 +01:00
/// Gets or sets the limit.
2014-07-26 19:30:15 +02:00
/// </summary>
2014-12-11 07:20:28 +01:00
/// <value>The limit.</value>
public int? ItemLimit { get; set; }
2015-03-15 20:10:27 +01:00
/// <summary>
/// Gets or sets the bitrate.
/// </summary>
/// <value>The bitrate.</value>
public int? Bitrate { get; set; }
2014-07-15 06:12:26 +02:00
public SyncJobRequest()
{
2014-07-22 18:36:34 +02:00
ItemIds = new List<string>();
2014-12-11 07:20:28 +01:00
SyncNewContent = true;
2014-07-15 06:12:26 +02:00
}
}
}