LiveStreamInfo.cs 407 B

123456789101112131415161718
  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. }
  17. }