LiveStreamInfo.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. using MediaBrowser.Model.Entities;
  2. using System.Collections.Generic;
  3. namespace MediaBrowser.Controller.LiveTv
  4. {
  5. public class LiveStreamInfo
  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 URL.
  14. /// </summary>
  15. /// <value>The URL.</value>
  16. public string Url { get; set; }
  17. /// <summary>
  18. /// Gets or sets the identifier.
  19. /// </summary>
  20. /// <value>The identifier.</value>
  21. public string Id { get; set; }
  22. /// <summary>
  23. /// Gets or sets the media container.
  24. /// </summary>
  25. /// <value>The media container.</value>
  26. public string MediaContainer { get; set; }
  27. /// <summary>
  28. /// Gets or sets the media streams.
  29. /// </summary>
  30. /// <value>The media streams.</value>
  31. public List<MediaStream> MediaStreams { get; set; }
  32. public LiveStreamInfo()
  33. {
  34. MediaStreams = new List<MediaStream>();
  35. }
  36. }
  37. }