namespace MediaBrowser.Model.LiveTv { 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; } } }