aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Channels/ChannelQuery.cs
diff options
context:
space:
mode:
authorTim Hobbs <jesus.tesh@gmail.com>2014-03-17 20:07:58 -0700
committerTim Hobbs <jesus.tesh@gmail.com>2014-03-17 20:07:58 -0700
commitbea21173b5ba001d39fbbfb1f0a572d2dce887ab (patch)
treee00d218e8aa240eb1e33e24f331dcf1815036781 /MediaBrowser.Model/Channels/ChannelQuery.cs
parentcf43180a2dcab023ba6a48f37920615d7e87c599 (diff)
parent53749f077bedc84323ac13694c7f0963a65d1f06 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'MediaBrowser.Model/Channels/ChannelQuery.cs')
-rw-r--r--MediaBrowser.Model/Channels/ChannelQuery.cs57
1 files changed, 57 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Channels/ChannelQuery.cs b/MediaBrowser.Model/Channels/ChannelQuery.cs
new file mode 100644
index 000000000..13a87efb6
--- /dev/null
+++ b/MediaBrowser.Model/Channels/ChannelQuery.cs
@@ -0,0 +1,57 @@
+
+namespace MediaBrowser.Model.Channels
+{
+ public class ChannelQuery
+ {
+ /// <summary>
+ /// Gets or sets the user identifier.
+ /// </summary>
+ /// <value>The user identifier.</value>
+ public string UserId { get; set; }
+
+ /// <summary>
+ /// Skips over a given number of items within the results. Use for paging.
+ /// </summary>
+ /// <value>The start index.</value>
+ public int? StartIndex { get; set; }
+
+ /// <summary>
+ /// The maximum number of items to return
+ /// </summary>
+ /// <value>The limit.</value>
+ public int? Limit { get; set; }
+ }
+
+ public class ChannelItemQuery
+ {
+ /// <summary>
+ /// Gets or sets the channel identifier.
+ /// </summary>
+ /// <value>The channel identifier.</value>
+ public string ChannelId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the category identifier.
+ /// </summary>
+ /// <value>The category identifier.</value>
+ public string CategoryId { get; set; }
+
+ /// <summary>
+ /// Gets or sets the user identifier.
+ /// </summary>
+ /// <value>The user identifier.</value>
+ public string UserId { get; set; }
+
+ /// <summary>
+ /// Skips over a given number of items within the results. Use for paging.
+ /// </summary>
+ /// <value>The start index.</value>
+ public int? StartIndex { get; set; }
+
+ /// <summary>
+ /// The maximum number of items to return
+ /// </summary>
+ /// <value>The limit.</value>
+ public int? Limit { get; set; }
+ }
+}