aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs')
-rw-r--r--MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs b/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
new file mode 100644
index 000000000..c69a1f6c3
--- /dev/null
+++ b/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
@@ -0,0 +1,21 @@
+using MediaBrowser.Model.Channels;
+using System;
+
+
+namespace MediaBrowser.Controller.Channels
+{
+ public class InternalChannelItemQuery
+ {
+ public string FolderId { get; set; }
+
+ public Guid UserId { get; set; }
+
+ public int? StartIndex { get; set; }
+
+ public int? Limit { get; set; }
+
+ public ChannelItemSortField? SortBy { get; set; }
+
+ public bool SortDescending { get; set; }
+ }
+}