aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs
blob: c02055b901c04af999c93eeeffd039c16cb7b4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Controller.Channels
{
    public class ChannelSearchInfo
    {
        public string SearchTerm { get; set; }

        public string UserId { get; set; }
    }

    public class ChannelLatestMediaSearch
    {
        public string UserId { get; set; }
    }
}