jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

19 lines
424 B
C#
Raw Normal View History

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