SyncedItem.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using MediaBrowser.Model.Dto;
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncedItem
  5. {
  6. /// <summary>
  7. /// Gets or sets the server identifier.
  8. /// </summary>
  9. /// <value>The server identifier.</value>
  10. public string ServerId { get; set; }
  11. /// <summary>
  12. /// Gets or sets the synchronize job identifier.
  13. /// </summary>
  14. /// <value>The synchronize job identifier.</value>
  15. public string SyncJobId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the synchronize job item identifier.
  18. /// </summary>
  19. /// <value>The synchronize job item identifier.</value>
  20. public string SyncJobItemId { get; set; }
  21. /// <summary>
  22. /// Gets or sets the name of the original file.
  23. /// </summary>
  24. /// <value>The name of the original file.</value>
  25. public string OriginalFileName { get; set; }
  26. /// <summary>
  27. /// Gets or sets the item.
  28. /// </summary>
  29. /// <value>The item.</value>
  30. public BaseItemDto Item { get; set; }
  31. /// <summary>
  32. /// Gets or sets the user identifier.
  33. /// </summary>
  34. /// <value>The user identifier.</value>
  35. public string UserId { get; set; }
  36. }
  37. }