19 lines
407 B
C#
19 lines
407 B
C#
|
|
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; }
|
|
}
|
|
}
|