jellyfin/MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs
2014-01-02 18:07:37 -05:00

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; }
}
}