add more channel feature reporting

This commit is contained in:
Luke Pulverenti
2014-05-27 13:57:29 -04:00
parent 680ffeebf7
commit ce8c5a1a3c
10 changed files with 88 additions and 26 deletions

View File

@@ -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 ChannelItemSortField? SortBy { get; set; }
public bool SortDescending { get; set; }
}
public class InternalAllChannelItemsQuery
{
public User User { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
}
}