aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelQuery.cs')
-rw-r--r--MediaBrowser.Model/Channels/ChannelQuery.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelQuery.cs b/MediaBrowser.Model/Channels/ChannelQuery.cs
index d1bf46433..cb61f358c 100644
--- a/MediaBrowser.Model/Channels/ChannelQuery.cs
+++ b/MediaBrowser.Model/Channels/ChannelQuery.cs
@@ -74,13 +74,15 @@ namespace MediaBrowser.Model.Channels
/// </summary>
/// <value>The extra types.</value>
public ExtraType[] ExtraTypes { get; set; }
-
+ public TrailerType[] TrailerTypes { get; set; }
+
public AllChannelMediaQuery()
{
ChannelIds = new string[] { };
ContentTypes = new ChannelMediaContentType[] { };
ExtraTypes = new ExtraType[] { };
+ TrailerTypes = new TrailerType[] { };
Filters = new ItemFilter[] { };
Fields = new List<ItemFields>();