jellyfin/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs

15 lines
316 B
C#
Raw Normal View History

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