PlaylistItemQuery.cs 1017 B

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