blob: 990b025bcb50bed4c5bdcee1b73b1de955c14cf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#nullable disable
#pragma warning disable CS1591
namespace MediaBrowser.Controller.Channels
{
public class ChannelSearchInfo
{
public string SearchTerm { get; set; }
public string UserId { get; set; }
}
}
|