aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelItemInfo.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Channels/ChannelItemInfo.cs')
-rw-r--r--MediaBrowser.Controller/Channels/ChannelItemInfo.cs5
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs
index 3c7df91c1..587023ab4 100644
--- a/MediaBrowser.Controller/Channels/ChannelItemInfo.cs
+++ b/MediaBrowser.Controller/Channels/ChannelItemInfo.cs
@@ -25,7 +25,7 @@ namespace MediaBrowser.Controller.Channels
public List<string> Tags { get; set; }
public List<PersonInfo> People { get; set; }
-
+
public float? CommunityRating { get; set; }
public long? RunTimeTicks { get; set; }
@@ -36,6 +36,8 @@ namespace MediaBrowser.Controller.Channels
public ChannelFolderType FolderType { get; set; }
public ChannelMediaContentType ContentType { get; set; }
+ public ExtraType ExtraType { get; set; }
+ public List<TrailerType> TrailerTypes { get; set; }
public Dictionary<string, string> ProviderIds { get; set; }
@@ -54,6 +56,7 @@ namespace MediaBrowser.Controller.Channels
public ChannelItemInfo()
{
MediaSources = new List<ChannelMediaInfo>();
+ TrailerTypes = new List<TrailerType>();
Genres = new List<string>();
Studios = new List<string>();
People = new List<PersonInfo>();