jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

15 lines
316 B
C#
Raw Normal View History

2014-05-12 01:02:28 +02:00
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Channels
{
public class InternalChannelItemQuery
{
public string FolderId { get; set; }
2014-05-12 01:02:28 +02:00
public User User { get; set; }
public int? StartIndex { get; set; }
public int? Limit { get; set; }
2014-05-12 01:02:28 +02:00
}
}