NextUpQuery.cs 859 B

123456789101112131415161718192021222324252627282930
  1. 
  2. namespace MediaBrowser.Model.Querying
  3. {
  4. public class NextUpQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the user id.
  8. /// </summary>
  9. /// <value>The user id.</value>
  10. public string UserId { get; set; }
  11. /// <summary>
  12. /// Skips over a given number of items within the results. Use for paging.
  13. /// </summary>
  14. /// <value>The start index.</value>
  15. public int? StartIndex { get; set; }
  16. /// <summary>
  17. /// The maximum number of items to return
  18. /// </summary>
  19. /// <value>The limit.</value>
  20. public int? Limit { get; set; }
  21. /// <summary>
  22. /// Fields to return within the items, in addition to basic information
  23. /// </summary>
  24. /// <value>The fields.</value>
  25. public ItemFields[] Fields { get; set; }
  26. }
  27. }