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; }
///
/// Gets or sets a value indicating whether this instance is movie.
///
/// null if [is movie] contains no value, true if [is movie]; otherwise, false.
public bool? IsMovie { get; set; }
///
/// Gets or sets a value indicating whether this instance is sports.
///
/// null if [is sports] contains no value, true if [is sports]; otherwise, false.
public bool? IsSports { get; set; }
}
}