mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:34:44 +01:00
Add GPL modules
This commit is contained in:
21
MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
Normal file
21
MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user