RecordingQuery.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 a value indicating whether this instance is recording.
  40. /// </summary>
  41. /// <value><c>null</c> if [is recording] contains no value, <c>true</c> if [is recording]; otherwise, <c>false</c>.</value>
  42. public bool? IsRecording { get; set; }
  43. }
  44. public class RecordingGroupQuery
  45. {
  46. /// <summary>
  47. /// Gets or sets the user identifier.
  48. /// </summary>
  49. /// <value>The user identifier.</value>
  50. public string UserId { get; set; }
  51. }
  52. public class TimerQuery
  53. {
  54. /// <summary>
  55. /// Gets or sets the channel identifier.
  56. /// </summary>
  57. /// <value>The channel identifier.</value>
  58. public string ChannelId { get; set; }
  59. }
  60. public class SeriesTimerQuery
  61. {
  62. }
  63. }