You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
using MediaBrowser.Model.Entities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
{
|
|
public class LiveStreamInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the path.
|
|
/// </summary>
|
|
/// <value>The path.</value>
|
|
public string Path { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the URL.
|
|
/// </summary>
|
|
/// <value>The URL.</value>
|
|
public string Url { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the identifier.
|
|
/// </summary>
|
|
/// <value>The identifier.</value>
|
|
public string Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the media container.
|
|
/// </summary>
|
|
/// <value>The media container.</value>
|
|
public string MediaContainer { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the media streams.
|
|
/// </summary>
|
|
/// <value>The media streams.</value>
|
|
public List<MediaStream> MediaStreams { get; set; }
|
|
|
|
public LiveStreamInfo()
|
|
{
|
|
MediaStreams = new List<MediaStream>();
|
|
}
|
|
}
|
|
}
|