aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs')
-rw-r--r--MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs b/MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs
new file mode 100644
index 0000000000..ba480f6852
--- /dev/null
+++ b/MediaBrowser.Controller/LiveTv/LiveStreamInfo.cs
@@ -0,0 +1,18 @@
+
+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; }
+ }
+}