TimerQuery.cs 660 B

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