aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelQuery.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-02 13:02:23 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-08-02 13:02:23 -0400
commitedecae6ed5bcd7159ac2ba2c12d8d38824915129 (patch)
tree72107a8b0c0f101f2e90e0e3bd90ff87c9668325 /MediaBrowser.Model/Channels/ChannelQuery.cs
parentbd39a81ba263d3ac961fdb8469629541c65f77f0 (diff)
improve guide loading performance
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelQuery.cs')
-rw-r--r--MediaBrowser.Model/Channels/ChannelQuery.cs14
1 files changed, 13 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelQuery.cs b/MediaBrowser.Model/Channels/ChannelQuery.cs
index 3c6e43fde..b63d797f4 100644
--- a/MediaBrowser.Model/Channels/ChannelQuery.cs
+++ b/MediaBrowser.Model/Channels/ChannelQuery.cs
@@ -1,8 +1,20 @@
-namespace MediaBrowser.Model.Channels
+using MediaBrowser.Model.Entities;
+using MediaBrowser.Model.Querying;
+
+namespace MediaBrowser.Model.Channels
{
public class ChannelQuery
{
/// <summary>
+ /// Fields to return within the items, in addition to basic information
+ /// </summary>
+ /// <value>The fields.</value>
+ public ItemFields[] Fields { get; set; }
+ public bool? EnableImages { get; set; }
+ public int? ImageTypeLimit { get; set; }
+ public ImageType[] EnableImageTypes { get; set; }
+
+ /// <summary>
/// Gets or sets the user identifier.
/// </summary>
/// <value>The user identifier.</value>