TimerInfoDto.cs 1.2 KB

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