jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
2014-05-19 15:51:56 -04:00

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