TimerInfoDto.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using MediaBrowser.Model.Dto;
  4. namespace MediaBrowser.Model.LiveTv
  5. {
  6. public class TimerInfoDto : BaseTimerInfoDto
  7. {
  8. public TimerInfoDto()
  9. {
  10. Type = "Timer";
  11. }
  12. /// <summary>
  13. /// Gets or sets the status.
  14. /// </summary>
  15. /// <value>The status.</value>
  16. public RecordingStatus Status { get; set; }
  17. /// <summary>
  18. /// Gets or sets the series timer identifier.
  19. /// </summary>
  20. /// <value>The series timer identifier.</value>
  21. public string SeriesTimerId { get; set; }
  22. /// <summary>
  23. /// Gets or sets the external series timer identifier.
  24. /// </summary>
  25. /// <value>The external series timer identifier.</value>
  26. public string ExternalSeriesTimerId { get; set; }
  27. /// <summary>
  28. /// Gets or sets the run time ticks.
  29. /// </summary>
  30. /// <value>The run time ticks.</value>
  31. public long? RunTimeTicks { get; set; }
  32. /// <summary>
  33. /// Gets or sets the program information.
  34. /// </summary>
  35. /// <value>The program information.</value>
  36. public BaseItemDto ProgramInfo { get; set; }
  37. }
  38. }