diff options
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/Channels/ChannelQuery.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelQuery.cs b/MediaBrowser.Model/Channels/ChannelQuery.cs index bd2accf65..a2f428869 100644 --- a/MediaBrowser.Model/Channels/ChannelQuery.cs +++ b/MediaBrowser.Model/Channels/ChannelQuery.cs @@ -43,9 +43,17 @@ /// <value>The limit.</value> public int? Limit { get; set; } + /// <summary> + /// Gets or sets the content types. + /// </summary> + /// <value>The content types.</value> + public ChannelMediaContentType[] ContentTypes { get; set; } + public AllChannelMediaQuery() { ChannelIds = new string[] { }; + + ContentTypes = new ChannelMediaContentType[] { }; } } |
