mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-09 23:15:37 +01:00
15 lines
No EOL
318 B
C#
15 lines
No EOL
318 B
C#
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Channels
|
|
{
|
|
public class InternalChannelItemQuery
|
|
{
|
|
public string CategoryId { get; set; }
|
|
|
|
public User User { get; set; }
|
|
|
|
public int? StartIndex { get; set; }
|
|
|
|
public int? Limit { get; set; }
|
|
}
|
|
} |