aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs
blob: 32469d4d7b38e9f1b925caf952e3012828ade145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma warning disable CS1591

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; }
    }
}