blob: d172b98b2565b6720c9b0f8dccfe3454c8a4b6d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#nullable disable
namespace MediaBrowser.Controller.Channels
{
/// <summary>
/// The request for a search in a channel.
/// </summary>
public class ChannelSearchInfo
{
/// <summary>
/// Gets or sets the search term.
/// </summary>
public string SearchTerm { get; set; }
/// <summary>
/// Gets or sets the user id.
/// </summary>
public string UserId { get; set; }
}
}
|