diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-27 13:57:29 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-05-27 13:57:29 -0400 |
| commit | ce8c5a1a3cc678c1e5dc4bd8a8f811895891fff9 (patch) | |
| tree | 1ec3db8bfcdec64d11b3f678111ffaee536caf82 /MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs | |
| parent | 680ffeebf7bc4b5f07daa360ba4b89526cd2db9f (diff) | |
add more channel feature reporting
Diffstat (limited to 'MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs')
| -rw-r--r-- | MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs b/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs index 4f032fe91..1b05e60b6 100644 --- a/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs +++ b/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs @@ -1,4 +1,5 @@ using MediaBrowser.Controller.Entities; +using MediaBrowser.Model.Channels; namespace MediaBrowser.Controller.Channels { @@ -11,15 +12,9 @@ namespace MediaBrowser.Controller.Channels public int? StartIndex { get; set; } public int? Limit { get; set; } - } - public class InternalAllChannelItemsQuery - { - public User User { get; set; } + public ChannelItemSortField? SortBy { get; set; } - public int? StartIndex { get; set; } - - public int? Limit { get; set; } + public bool SortDescending { get; set; } } - }
\ No newline at end of file |
