#nullable disable namespace MediaBrowser.Controller.Channels { /// /// The request for a search in a channel. /// public class ChannelSearchInfo { /// /// Gets or sets the search term. /// public string SearchTerm { get; set; } /// /// Gets or sets the user id. /// public string UserId { get; set; } } }