UpcomingEpisodesQuery.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. namespace MediaBrowser.Model.Querying
  2. {
  3. public class UpcomingEpisodesQuery
  4. {
  5. /// <summary>
  6. /// Gets or sets the user id.
  7. /// </summary>
  8. /// <value>The user id.</value>
  9. public string UserId { get; set; }
  10. /// <summary>
  11. /// Gets or sets the parent identifier.
  12. /// </summary>
  13. /// <value>The parent identifier.</value>
  14. public string ParentId { get; set; }
  15. /// <summary>
  16. /// Skips over a given number of items within the results. Use for paging.
  17. /// </summary>
  18. /// <value>The start index.</value>
  19. public int? StartIndex { 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. /// Fields to return within the items, in addition to basic information
  27. /// </summary>
  28. /// <value>The fields.</value>
  29. public ItemFields[] Fields { get; set; }
  30. }
  31. }