aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
blob: 82ef6b9462c2a5ac9240f6125bccd6c1490e780b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using MediaBrowser.Model.Channels;

namespace MediaBrowser.Controller.Channels
{
    public class InternalChannelItemQuery
    {
        public string FolderId { get; set; }

        public string UserId { get; set; }

        public int? StartIndex { get; set; }

        public int? Limit { get; set; }

        public ChannelItemSortField? SortBy { get; set; }

        public bool SortDescending { get; set; }
    }
}