LiveStreamInfo.cs 576 B

123456789101112131415161718192021222324
  1. 
  2. namespace MediaBrowser.Controller.LiveTv
  3. {
  4. public class LiveStreamInfo
  5. {
  6. /// <summary>
  7. /// Gets or sets the path.
  8. /// </summary>
  9. /// <value>The path.</value>
  10. public string Path { get; set; }
  11. /// <summary>
  12. /// Gets or sets the URL.
  13. /// </summary>
  14. /// <value>The URL.</value>
  15. public string Url { get; set; }
  16. /// <summary>
  17. /// Gets or sets the identifier.
  18. /// </summary>
  19. /// <value>The identifier.</value>
  20. public string Id { get; set; }
  21. }
  22. }