aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/ChannelSearchInfo.cs
blob: 53a73d62a911c35f67472c2d73c74097ecd76579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

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