aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/InternalChannelItemQuery.cs
blob: 21100ebdd70af7b0f2582a3268436be70723c077 (plain)
1
2
3
4
5
6
7
8
9
10
11
using MediaBrowser.Controller.Entities;

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

        public User User { get; set; }
    }
}