2
0

RecordingQuery.cs 969 B

1234567891011121314151617181920212223242526272829303132333435
  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 name of the service.
  15. /// </summary>
  16. /// <value>The name of the service.</value>
  17. public string ServiceName { get; set; }
  18. }
  19. public class TimerQuery
  20. {
  21. /// <summary>
  22. /// Gets or sets the channel identifier.
  23. /// </summary>
  24. /// <value>The channel identifier.</value>
  25. public string ChannelId { get; set; }
  26. /// <summary>
  27. /// Gets or sets the name of the service.
  28. /// </summary>
  29. /// <value>The name of the service.</value>
  30. public string ServiceName { get; set; }
  31. }
  32. }