RecordingQuery.cs 976 B

123456789101112131415161718192021222324252627282930313233343536373839
  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. }
  24. public class TimerQuery
  25. {
  26. /// <summary>
  27. /// Gets or sets the channel identifier.
  28. /// </summary>
  29. /// <value>The channel identifier.</value>
  30. public string ChannelId { get; set; }
  31. }
  32. public class SeriesTimerQuery
  33. {
  34. }
  35. }