Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

19 lines
424 B
C#
Raw Normal View History

2014-06-06 13:14:02 -04:00
using MediaBrowser.Model.Channels;
2014-05-11 19:02:28 -04:00
namespace MediaBrowser.Controller.Channels
{
public class InternalChannelItemQuery
{
public string FolderId { get; set; }
2014-05-11 19:02:28 -04:00
2014-06-06 13:14:02 -04:00
public string UserId { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
2014-05-27 13:57:29 -04:00
public ChannelItemSortField? SortBy { get; set; }
2014-05-27 13:57:29 -04:00
public bool SortDescending { get; set; }
}
2014-05-11 19:02:28 -04:00
}