SyncJobItem.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. 
  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 SyncJobStatus Status { get; set; }
  36. /// <summary>
  37. /// Gets or sets the current progress.
  38. /// </summary>
  39. /// <value>The current progress.</value>
  40. public double? CurrentProgress { get; set; }
  41. }
  42. }