SyncedFileInfo.cs 1.1 KB

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