jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

19 lines
424 B
C#
Raw Normal View History

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