SyncJobItem.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. using System;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncJobItem
  5. {
  6. /// <summary>
  7. /// Gets or sets the identifier.
  8. /// </summary>
  9. /// <value>The identifier.</value>
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// Gets or sets the job identifier.
  13. /// </summary>
  14. /// <value>The job identifier.</value>
  15. public string JobId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the item identifier.
  18. /// </summary>
  19. /// <value>The item identifier.</value>
  20. public string ItemId { get; set; }
  21. /// <summary>
  22. /// Gets or sets the target identifier.
  23. /// </summary>
  24. /// <value>The target identifier.</value>
  25. public string TargetId { get; set; }
  26. /// <summary>
  27. /// Gets or sets the output path.
  28. /// </summary>
  29. /// <value>The output path.</value>
  30. public string OutputPath { get; set; }
  31. /// <summary>
  32. /// Gets or sets the status.
  33. /// </summary>
  34. /// <value>The status.</value>
  35. public SyncJobItemStatus Status { get; set; }
  36. /// <summary>
  37. /// Gets or sets the current progress.
  38. /// </summary>
  39. /// <value>The current progress.</value>
  40. public double? Progress { get; set; }
  41. /// <summary>
  42. /// Gets or sets the date created.
  43. /// </summary>
  44. /// <value>The date created.</value>
  45. public DateTime DateCreated { get; set; }
  46. }
  47. }