using MediaBrowser.Model.Entities; using System.Collections.Generic; namespace MediaBrowser.Controller.LiveTv { public class LiveStreamInfo { /// /// Gets or sets the path. /// /// The path. public string Path { get; set; } /// /// Gets or sets the URL. /// /// The URL. public string Url { get; set; } /// /// Gets or sets the identifier. /// /// The identifier. public string Id { get; set; } /// /// Gets or sets the media container. /// /// The media container. public string MediaContainer { get; set; } /// /// Gets or sets the media streams. /// /// The media streams. public List MediaStreams { get; set; } public LiveStreamInfo() { MediaStreams = new List(); } } }