diff options
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelQuery.cs')
| -rw-r--r-- | MediaBrowser.Model/Channels/ChannelQuery.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelQuery.cs b/MediaBrowser.Model/Channels/ChannelQuery.cs index 9d4e26fa6..62bb543f6 100644 --- a/MediaBrowser.Model/Channels/ChannelQuery.cs +++ b/MediaBrowser.Model/Channels/ChannelQuery.cs @@ -22,10 +22,20 @@ namespace MediaBrowser.Model.Channels /// </summary> /// <value>The limit.</value> public int? Limit { get; set; } + + /// <summary> + /// Gets or sets a value indicating whether [supports latest items]. + /// </summary> + /// <value><c>true</c> if [supports latest items]; otherwise, <c>false</c>.</value> + public bool? SupportsLatestItems { get; set; } } public class AllChannelMediaQuery { + /// <summary> + /// Gets or sets the channel ids. + /// </summary> + /// <value>The channel ids.</value> public string[] ChannelIds { get; set; } /// <summary> |
