TimerInfoDto.cs 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. namespace MediaBrowser.Model.LiveTv
  2. {
  3. public class TimerInfoDto : BaseTimerInfoDto
  4. {
  5. /// <summary>
  6. /// Gets or sets the status.
  7. /// </summary>
  8. /// <value>The status.</value>
  9. public RecordingStatus Status { 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. /// <summary>
  16. /// Gets or sets the external series timer identifier.
  17. /// </summary>
  18. /// <value>The external series timer identifier.</value>
  19. public string ExternalSeriesTimerId { get; set; }
  20. /// <summary>
  21. /// Gets or sets the run time ticks.
  22. /// </summary>
  23. /// <value>The run time ticks.</value>
  24. public long? RunTimeTicks { get; set; }
  25. /// <summary>
  26. /// Gets or sets the program information.
  27. /// </summary>
  28. /// <value>The program information.</value>
  29. public ProgramInfoDto ProgramInfo { get; set; }
  30. }
  31. }