SyncJobRequest.cs 766 B

12345678910111213141516171819202122232425262728
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncJobRequest
  5. {
  6. /// <summary>
  7. /// Gets or sets the device identifier.
  8. /// </summary>
  9. /// <value>The device identifier.</value>
  10. public List<string> DeviceIds { get; set; }
  11. /// <summary>
  12. /// Gets or sets the item identifier.
  13. /// </summary>
  14. /// <value>The item identifier.</value>
  15. public string ItemId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the quality.
  18. /// </summary>
  19. /// <value>The quality.</value>
  20. public SyncQuality Quality { get; set; }
  21. public SyncJobRequest()
  22. {
  23. DeviceIds = new List<string>();
  24. }
  25. }
  26. }