PlaylistItemQuery.cs 985 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using MediaBrowser.Model.Querying;
  2. namespace MediaBrowser.Model.Playlists
  3. {
  4. public class PlaylistItemQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the identifier.
  8. /// </summary>
  9. /// <value>The identifier.</value>
  10. public string Id { get; set; }
  11. /// <summary>
  12. /// Gets or sets the user identifier.
  13. /// </summary>
  14. /// <value>The user identifier.</value>
  15. public string UserId { get; set; }
  16. /// <summary>
  17. /// Gets or sets the start index.
  18. /// </summary>
  19. /// <value>The start index.</value>
  20. public int? StartIndex { get; set; }
  21. /// <summary>
  22. /// Gets or sets the limit.
  23. /// </summary>
  24. /// <value>The limit.</value>
  25. public int? Limit { get; set; }
  26. /// <summary>
  27. /// Gets or sets the fields.
  28. /// </summary>
  29. /// <value>The fields.</value>
  30. public ItemFields[] Fields { get; set; }
  31. }
  32. }