ChannelQuery.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. namespace MediaBrowser.Model.Channels
  2. {
  3. public class ChannelQuery
  4. {
  5. /// <summary>
  6. /// Gets or sets the user identifier.
  7. /// </summary>
  8. /// <value>The user identifier.</value>
  9. public string UserId { get; set; }
  10. /// <summary>
  11. /// Skips over a given number of items within the results. Use for paging.
  12. /// </summary>
  13. /// <value>The start index.</value>
  14. public int? StartIndex { 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. /// Gets or sets a value indicating whether [supports latest items].
  22. /// </summary>
  23. /// <value><c>true</c> if [supports latest items]; otherwise, <c>false</c>.</value>
  24. public bool? SupportsLatestItems { get; set; }
  25. /// <summary>
  26. /// Gets or sets a value indicating whether this instance is favorite.
  27. /// </summary>
  28. /// <value><c>null</c> if [is favorite] contains no value, <c>true</c> if [is favorite]; otherwise, <c>false</c>.</value>
  29. public bool? IsFavorite { get; set; }
  30. }
  31. }