RecommendedProgramQuery.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. public class RecommendedProgramQuery
  4. {
  5. /// <summary>
  6. /// Gets or sets the user identifier.
  7. /// </summary>
  8. /// <value>The user identifier.</value>
  9. public string UserId { get; set; }
  10. /// <summary>
  11. /// Gets or sets a value indicating whether this instance is airing.
  12. /// </summary>
  13. /// <value><c>true</c> if this instance is airing; otherwise, <c>false</c>.</value>
  14. public bool? IsAiring { get; set; }
  15. /// <summary>
  16. /// Gets or sets a value indicating whether this instance has aired.
  17. /// </summary>
  18. /// <value><c>null</c> if [has aired] contains no value, <c>true</c> if [has aired]; otherwise, <c>false</c>.</value>
  19. public bool? HasAired { get; set; }
  20. /// <summary>
  21. /// The maximum number of items to return
  22. /// </summary>
  23. /// <value>The limit.</value>
  24. public int? Limit { get; set; }
  25. /// <summary>
  26. /// Gets or sets a value indicating whether this instance is movie.
  27. /// </summary>
  28. /// <value><c>null</c> if [is movie] contains no value, <c>true</c> if [is movie]; otherwise, <c>false</c>.</value>
  29. public bool? IsMovie { get; set; }
  30. }
  31. }