using System; 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 DateTime? MinStartDate { get; set; } public DateTime? MaxStartDate { get; set; } public DateTime? MinEndDate { get; set; } public DateTime? MaxEndDate { get; set; } public ProgramQuery() { ChannelIdList = new string[] { }; } } public class RecommendedProgramQuery { /// /// Gets or sets the user identifier. /// /// The user identifier. public string UserId { get; set; } /// /// Gets or sets a value indicating whether this instance is airing. /// /// true if this instance is airing; otherwise, false. public bool? IsAiring { get; set; } /// /// Gets or sets a value indicating whether this instance has aired. /// /// null if [has aired] contains no value, true if [has aired]; otherwise, false. public bool? HasAired { get; set; } /// /// The maximum number of items to return /// /// The limit. public int? Limit { get; set; } } }