RecordingQuery.cs 577 B

1234567891011121314151617181920212223
  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. }
  14. public class TimerQuery
  15. {
  16. /// <summary>
  17. /// Gets or sets the channel identifier.
  18. /// </summary>
  19. /// <value>The channel identifier.</value>
  20. public string ChannelId { get; set; }
  21. }
  22. }