TimerInfoDto.cs 1.1 KB

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