PlaylistItemQuery.cs 1.0 KB

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