TimerQuery.cs 572 B

123456789101112131415161718192021
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. public class TimerQuery
  4. {
  5. /// <summary>
  6. /// Gets or sets the channel identifier.
  7. /// </summary>
  8. /// <value>The channel identifier.</value>
  9. public string ChannelId { get; set; }
  10. /// <summary>
  11. /// Gets or sets the series timer identifier.
  12. /// </summary>
  13. /// <value>The series timer identifier.</value>
  14. public string SeriesTimerId { get; set; }
  15. public bool? IsActive { get; set; }
  16. public bool? IsScheduled { get; set; }
  17. }
  18. }