jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

22 lines
438 B
C#
Raw Normal View History

2018-12-27 18:27:57 -05:00
using MediaBrowser.Model.Channels;
using System;
namespace MediaBrowser.Controller.Channels
{
public class InternalChannelItemQuery
{
public string FolderId { get; set; }
public Guid UserId { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
public ChannelItemSortField? SortBy { get; set; }
public bool SortDescending { get; set; }
}
}