jellyfin/MediaBrowser.Model/Sync/SyncJobRequest.cs

35 lines
959 B
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>
/// Gets or sets the device identifier.
/// </summary>
/// <value>The device identifier.</value>
2014-07-22 03:29:06 +02:00
public List<string> TargetIds { 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>
/// Gets or sets the quality.
/// </summary>
/// <value>The quality.</value>
public SyncQuality Quality { get; set; }
2014-07-22 18:36:34 +02:00
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2014-07-15 06:12:26 +02:00
public SyncJobRequest()
{
2014-07-22 03:29:06 +02:00
TargetIds = new List<string>();
2014-07-22 18:36:34 +02:00
ItemIds = new List<string>();
2014-07-15 06:12:26 +02:00
}
}
}