ChannelQuery.cs 661 B

1234567891011121314151617181920212223
  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. }
  21. }