Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
Andrew Rabert a86b71899e Add GPL modules
2018-12-27 18:27:57 -05:00

22 lines
438 B
C#

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; }
}
}