namespace MediaBrowser.Model.LiveTv { /// /// Class ProgramQuery. /// public class ProgramQuery { /// /// Gets or sets the channel identifier. /// /// The channel identifier. public string[] ChannelIdList { get; set; } /// /// Gets or sets the user identifier. /// /// The user identifier. public string UserId { get; set; } public ProgramQuery() { ChannelIdList = new string[] { }; } } }