aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/LiveTv/EpgFullInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/LiveTv/EpgFullInfo.cs')
-rw-r--r--MediaBrowser.Model/LiveTv/EpgFullInfo.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Model/LiveTv/EpgFullInfo.cs b/MediaBrowser.Model/LiveTv/EpgFullInfo.cs
new file mode 100644
index 000000000..8e48537b8
--- /dev/null
+++ b/MediaBrowser.Model/LiveTv/EpgFullInfo.cs
@@ -0,0 +1,17 @@
+using System.Collections.Generic;
+
+namespace MediaBrowser.Model.LiveTv
+{
+ public class EpgFullInfo
+ {
+ /// <summary>
+ /// ChannelId for the EPG.
+ /// </summary>
+ public string ChannelId { get; set; }
+
+ /// <summary>
+ /// List of all the programs for a specific channel
+ /// </summary>
+ public List<EpgInfo> EpgInfos { get; set; }
+ }
+}