FileOrganizationResultQuery.cs 502 B

123456789101112131415161718
  1. 
  2. namespace MediaBrowser.Model.FileOrganization
  3. {
  4. public class FileOrganizationResultQuery
  5. {
  6. /// <summary>
  7. /// Skips over a given number of items within the results. Use for paging.
  8. /// </summary>
  9. /// <value>The start index.</value>
  10. public int? StartIndex { get; set; }
  11. /// <summary>
  12. /// The maximum number of items to return
  13. /// </summary>
  14. /// <value>The limit.</value>
  15. public int? Limit { get; set; }
  16. }
  17. }