SyncedFileInfo.cs 1012 B

12345678910111213141516171819202122232425262728293031323334
  1. using MediaBrowser.Model.MediaInfo;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.Sync
  4. {
  5. public class SyncedFileInfo
  6. {
  7. /// <summary>
  8. /// Gets or sets the path.
  9. /// </summary>
  10. /// <value>The path.</value>
  11. public string Path { get; set; }
  12. /// <summary>
  13. /// Gets or sets the protocol.
  14. /// </summary>
  15. /// <value>The protocol.</value>
  16. public MediaProtocol Protocol { get; set; }
  17. /// <summary>
  18. /// Gets or sets the required HTTP headers.
  19. /// </summary>
  20. /// <value>The required HTTP headers.</value>
  21. public Dictionary<string, string> RequiredHttpHeaders { get; set; }
  22. /// <summary>
  23. /// Gets or sets the identifier.
  24. /// </summary>
  25. /// <value>The identifier.</value>
  26. public string Id { get; set; }
  27. public SyncedFileInfo()
  28. {
  29. RequiredHttpHeaders = new Dictionary<string, string>();
  30. }
  31. }
  32. }