RecordingQuery.cs 807 B

123456789101112131415161718192021222324252627282930313233
  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. }
  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. }
  27. public class SeriesTimerQuery
  28. {
  29. }
  30. }