SyncedFileInfo.cs 1.1 KB

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