SimilarItemsQuery.cs 810 B

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