21 lines
458 B
C#
21 lines
458 B
C#
#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; }
|
|
}
|
|
}
|