SyncJobItem.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 name of the item.
  23. /// </summary>
  24. /// <value>The name of the item.</value>
  25. public string ItemName { get; set; }
  26. /// <summary>
  27. /// Gets or sets the media source identifier.
  28. /// </summary>
  29. /// <value>The media source identifier.</value>
  30. public string MediaSourceId { get; set; }
  31. /// <summary>
  32. /// Gets or sets the target identifier.
  33. /// </summary>
  34. /// <value>The target identifier.</value>
  35. public string TargetId { get; set; }
  36. /// <summary>
  37. /// Gets or sets the output path.
  38. /// </summary>
  39. /// <value>The output path.</value>
  40. public string OutputPath { get; set; }
  41. /// <summary>
  42. /// Gets or sets the status.
  43. /// </summary>
  44. /// <value>The status.</value>
  45. public SyncJobItemStatus Status { get; set; }
  46. /// <summary>
  47. /// Gets or sets the current progress.
  48. /// </summary>
  49. /// <value>The current progress.</value>
  50. public double? Progress { get; set; }
  51. /// <summary>
  52. /// Gets or sets the date created.
  53. /// </summary>
  54. /// <value>The date created.</value>
  55. public DateTime DateCreated { get; set; }
  56. /// <summary>
  57. /// Gets or sets the primary image item identifier.
  58. /// </summary>
  59. /// <value>The primary image item identifier.</value>
  60. public string PrimaryImageItemId { get; set; }
  61. /// <summary>
  62. /// Gets or sets the primary image tag.
  63. /// </summary>
  64. /// <value>The primary image tag.</value>
  65. public string PrimaryImageTag { get; set; }
  66. }
  67. }