SyncJobQuery.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. 
  2. namespace MediaBrowser.Model.Sync
  3. {
  4. public class SyncJobQuery
  5. {
  6. /// <summary>
  7. /// Gets or sets the start index.
  8. /// </summary>
  9. /// <value>The start index.</value>
  10. public int? StartIndex { get; set; }
  11. /// <summary>
  12. /// Gets or sets the limit.
  13. /// </summary>
  14. /// <value>The limit.</value>
  15. public int? Limit { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether this instance is completed.
  18. /// </summary>
  19. /// <value><c>null</c> if [is completed] contains no value, <c>true</c> if [is completed]; otherwise, <c>false</c>.</value>
  20. public bool? IsCompleted { get; set; }
  21. /// <summary>
  22. /// Gets or sets the target identifier.
  23. /// </summary>
  24. /// <value>The target identifier.</value>
  25. public string TargetId { get; set; }
  26. /// <summary>
  27. /// Gets or sets the user identifier.
  28. /// </summary>
  29. /// <value>The user identifier.</value>
  30. public string UserId { get; set; }
  31. }
  32. }