TimerInfoDto.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. public string Type { get; set; }
  26. /// <summary>
  27. /// Gets or sets the run time ticks.
  28. /// </summary>
  29. /// <value>The run time ticks.</value>
  30. public long? RunTimeTicks { get; set; }
  31. /// <summary>
  32. /// Gets or sets the program information.
  33. /// </summary>
  34. /// <value>The program information.</value>
  35. public BaseItemDto ProgramInfo { get; set; }
  36. }
  37. }