SyncedFileInfo.cs 844 B

1234567891011121314151617181920212223242526272829
  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. public SyncedFileInfo()
  23. {
  24. RequiredHttpHeaders = new Dictionary<string, string>();
  25. }
  26. }
  27. }