RecordingQuery.cs 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. /// <summary>
  4. /// Class RecordingQuery.
  5. /// </summary>
  6. public class RecordingQuery
  7. {
  8. /// <summary>
  9. /// Gets or sets the channel identifier.
  10. /// </summary>
  11. /// <value>The channel identifier.</value>
  12. public string ChannelId { get; set; }
  13. /// <summary>
  14. /// Gets or sets the user identifier.
  15. /// </summary>
  16. /// <value>The user identifier.</value>
  17. public string UserId { get; set; }
  18. /// <summary>
  19. /// Gets or sets the identifier.
  20. /// </summary>
  21. /// <value>The identifier.</value>
  22. public string Id { get; set; }
  23. /// <summary>
  24. /// Gets or sets the group identifier.
  25. /// </summary>
  26. /// <value>The group identifier.</value>
  27. public string GroupId { get; set; }
  28. /// <summary>
  29. /// Skips over a given number of items within the results. Use for paging.
  30. /// </summary>
  31. /// <value>The start index.</value>
  32. public int? StartIndex { get; set; }
  33. /// <summary>
  34. /// The maximum number of items to return
  35. /// </summary>
  36. /// <value>The limit.</value>
  37. public int? Limit { get; set; }
  38. /// <summary>
  39. /// Gets or sets the status.
  40. /// </summary>
  41. /// <value>The status.</value>
  42. public RecordingStatus? Status { get; set; }
  43. /// <summary>
  44. /// Gets or sets a value indicating whether this instance is in progress.
  45. /// </summary>
  46. /// <value><c>null</c> if [is in progress] contains no value, <c>true</c> if [is in progress]; otherwise, <c>false</c>.</value>
  47. public bool? IsInProgress { get; set; }
  48. /// <summary>
  49. /// Gets or sets the series timer identifier.
  50. /// </summary>
  51. /// <value>The series timer identifier.</value>
  52. public string SeriesTimerId { get; set; }
  53. }
  54. }